Skip to content

Commit

Permalink
Merge pull request #110 from refinedmods/feat/GH-106/gametests
Browse files Browse the repository at this point in the history
Gametests pt2
  • Loading branch information
raoulvdberge authored May 25, 2024
2 parents b28d32a + e49cf7d commit 3794004
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 8 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Changed

- Updated Gradle.
- Include NeoForge testframework.

## [0.12.0] - 2024-05-25

### Added
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
15 changes: 8 additions & 7 deletions helper.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ buildscript {
classpath 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.15.0'
classpath 'org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:4.4.1.3373'
classpath 'org.spongepowered:vanillagradle:0.2.1-SNAPSHOT'
classpath 'net.neoforged.gradle:userdev:7.0.80'
classpath 'fabric-loom:fabric-loom.gradle.plugin:1.5-SNAPSHOT'
classpath 'net.neoforged.gradle:userdev:7.0.134'
classpath 'fabric-loom:fabric-loom.gradle.plugin:1.6-SNAPSHOT'
classpath 'net.darkhax.curseforgegradle:CurseForgeGradle:1.1.18'
classpath 'com.modrinth.minotaur:Minotaur:2.+'
}
Expand Down Expand Up @@ -84,13 +84,13 @@ allprojects {

ext {
minecraftVersion = "1.20.4"
forgeVersion = "20.4.137-beta"
fabricLoaderVersion = "0.15.6"
fabricApiVersion = "0.95.1+1.20.4"
forgeVersion = "20.4.234"
fabricLoaderVersion = "0.15.11"
fabricApiVersion = "0.97.0+1.20.4"
// https://www.curseforge.com/minecraft/mc-mods/jei/files
jeiVersion = "17.2.0.41"
jeiVersion = "17.3.0.52"
// https://www.curseforge.com/minecraft/mc-mods/roughly-enough-items/files
reiVersion = "14.0.688"
reiVersion = "14.1.727"
architecturyVersion = "11.0.9" // dependency of rei
clothMathVersion = "0.6.1" // dependency of rei
clothConfigVersion = "13.0.121" // dependency of rei
Expand Down Expand Up @@ -212,6 +212,7 @@ allprojects {
}
dependencies {
implementation "net.neoforged:neoforge:${forgeVersion}"
testImplementation "net.neoforged:testframework:${forgeVersion}"
apis.collect {
implementation project(it)
}
Expand Down

0 comments on commit 3794004

Please sign in to comment.