Skip to content

Commit

Permalink
feat: move to NeoForge
Browse files Browse the repository at this point in the history
  • Loading branch information
raoulvdberge committed Aug 20, 2023
1 parent a687564 commit f4d7b48
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Added

- The Forge helpers now use NeoForge instead of Forge.

### Changed

- Bumped various library versions.

## [0.7.1] - 2023-07-07

### Fixed
Expand Down
10 changes: 5 additions & 5 deletions helper.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ buildscript {
url = 'https://repo.spongepowered.org/repository/maven-public/'
}
maven {
name = 'Forge'
url = 'https://maven.minecraftforge.net'
name = 'NeoForge'
url = 'https://maven.neoforged.net/releases'
}
maven {
name = 'Fabric'
Expand All @@ -22,7 +22,7 @@ buildscript {
classpath 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.9.11'
classpath 'org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:4.2.1.3168'
classpath 'org.spongepowered:vanillagradle:0.2.1-SNAPSHOT'
classpath 'net.minecraftforge.gradle:ForgeGradle:[6.0,6.2)'
classpath 'net.neoforged:NeoGradle:[6.0.13, 6.2)'
classpath 'fabric-loom:fabric-loom.gradle.plugin:1.2-SNAPSHOT'
classpath 'net.darkhax.curseforgegradle:CurseForgeGradle:1.1.15'
classpath 'com.modrinth.minotaur:Minotaur:2.+'
Expand Down Expand Up @@ -78,7 +78,7 @@ allprojects {

ext {
minecraftVersion = "1.20.1"
forgeVersion = "47.0.35"
forgeVersion = "47.1.70"
fabricLoaderVersion = "0.14.22"
fabricApiVersion = "0.87.0+1.20.1"
// https://www.curseforge.com/minecraft/mc-mods/jei/files
Expand Down Expand Up @@ -227,7 +227,7 @@ allprojects {
}
}
dependencies {
minecraft "net.minecraftforge:forge:${minecraftVersion}-${forgeVersion}"
minecraft "net.neoforged:forge:${minecraftVersion}-${forgeVersion}"
apis.collect {
implementation project(it)
}
Expand Down

0 comments on commit f4d7b48

Please sign in to comment.