From 8e2241b620036c9c72023194e391549b26fd88ef Mon Sep 17 00:00:00 2001 From: Martin Robertz Date: Fri, 29 Dec 2023 12:50:58 +0100 Subject: [PATCH] update bs + deps --- build.gradle | 8 +++++--- dependencies.gradle | 14 +++++++------- 2 files changed, 12 insertions(+), 10 deletions(-) diff --git a/build.gradle b/build.gradle index 8507c7d..50c3291 100644 --- a/build.gradle +++ b/build.gradle @@ -1,4 +1,4 @@ -//version: 1701530445 +//version: 1702141377 /* DO NOT CHANGE THIS FILE! Also, you may replace this file at any time if there is an update available. @@ -54,7 +54,7 @@ plugins { id 'com.diffplug.spotless' version '6.13.0' apply false // 6.13.0 is the last jvm8 supporting version id 'com.modrinth.minotaur' version '2.+' apply false id 'com.matthewprenger.cursegradle' version '1.4.0' apply false - id 'com.gtnewhorizons.retrofuturagradle' version '1.3.24' + id 'com.gtnewhorizons.retrofuturagradle' version '1.3.26' } print("You might want to check out './gradlew :faq' if your build fails.\n") @@ -613,7 +613,7 @@ repositories { } maven { name = "ic2" - url = getURL("https://maven.ic2.player.to/", "https://maven2.ic2.player.to/") + url = getURL("https://maven2.ic2.player.to/", "https://maven.ic2.player.to/") content { includeGroup "net.industrial-craft" } @@ -672,6 +672,8 @@ configurations.all { substitute module('com.github.GTNewHorizons:SpongePoweredMixin') using module(mixinProviderSpecNoClassifer) withClassifier("dev") because("Unimixins replaces other mixin mods") substitute module('com.github.GTNewHorizons:SpongeMixins') using module(mixinProviderSpecNoClassifer) withClassifier("dev") because("Unimixins replaces other mixin mods") substitute module('io.github.legacymoddingmc:unimixins') using module(mixinProviderSpecNoClassifer) withClassifier("dev") because("Our previous unimixins upload was missing the dev classifier") + + substitute module('org.scala-lang:scala-library:2.11.1') using module('org.scala-lang:scala-library:2.11.5') because('To allow mixing with Java 8 targets') } } diff --git a/dependencies.gradle b/dependencies.gradle index 61edee5..f19ba80 100644 --- a/dependencies.gradle +++ b/dependencies.gradle @@ -4,19 +4,19 @@ dependencies { api("com.github.GTNewHorizons:CropLoadCore:0.1.10:dev") api("net.industrial-craft:industrialcraft-2:2.2.828-experimental:dev") - devOnlyNonPublishable("com.github.GTNewHorizons:GT5-Unofficial:5.09.44.102:dev") + devOnlyNonPublishable("com.github.GTNewHorizons:GT5-Unofficial:5.09.45.13:dev") compileOnly(deobf("https://media.forgecdn.net/files/2499/612/BiomesOPlenty-1.7.10-2.1.0.2308-universal.jar")) compileOnly("com.github.GTNewHorizons:twilightforest:2.5.1:dev") { transitive = false } - compileOnly("com.github.GTNewHorizons:TinkersConstruct:1.10.12-GTNH:dev") + compileOnly("com.github.GTNewHorizons:TinkersConstruct:1.10.13-GTNH:dev") compileOnly("com.github.GTNewHorizons:Natura:2.5.7:dev") { transitive = false } - compileOnly("com.github.GTNewHorizons:NewHorizonsCoreMod:2.2.47:dev") { + compileOnly("com.github.GTNewHorizons:NewHorizonsCoreMod:2.3.2:dev") { transitive = false } - compileOnly("com.github.GTNewHorizons:Galacticraft:3.0.74-GTNH:dev") { + compileOnly("com.github.GTNewHorizons:Galacticraft:3.1.1-GTNH:dev") { transitive = false } compileOnly("thaumcraft:Thaumcraft:1.7.10-4.2.3.5:dev") @@ -24,8 +24,8 @@ dependencies { // for testing //runtimeOnly("thaumcraft:Thaumcraft:1.7.10-4.2.3.5:dev") //runtimeOnly("com.github.GTNewHorizons:twilightforest:2.5.1:dev") - //runtimeOnly("com.github.GTNewHorizons:TinkersConstruct:1.10.12-GTNH:dev") + //runtimeOnly("com.github.GTNewHorizons:TinkersConstruct:1.10.13-GTNH:dev") //runtimeOnly("com.github.GTNewHorizons:Natura:2.5.7:dev") - //runtimeOnly("com.github.GTNewHorizons:NewHorizonsCoreMod:2.2.47:dev") - //runtimeOnly("com.github.GTNewHorizons:Galacticraft:3.0.74-GTNH:dev") + //runtimeOnly("com.github.GTNewHorizons:NewHorizonsCoreMod:2.3.2:dev") + //runtimeOnly("com.github.GTNewHorizons:Galacticraft:3.1.1-GTNH:dev") }