diff --git a/dependencies.gradle b/dependencies.gradle index aa8f3d9e5b0..20ee9c4387d 100644 --- a/dependencies.gradle +++ b/dependencies.gradle @@ -1,7 +1,7 @@ // Add your dependencies here dependencies { - implementation('com.github.GTNewHorizons:NotEnoughItems:2.6.14-GTNH:dev') + implementation('com.github.GTNewHorizons:NotEnoughItems:2.6.19-GTNH:dev') implementation('curse.maven:cofh-core-69162:2388751') compileOnlyApi('com.github.GTNewHorizons:Angelica:1.0.0-beta2:api') @@ -10,7 +10,7 @@ dependencies { compileOnly('com.github.GTNewHorizons:BuildCraft:7.1.39:dev') {transitive = false} compileOnly('com.github.GTNewHorizons:ForestryMC:4.9.7:dev') {transitive = false} // required to compile CraftingV2Tests.java now compileOnly('com.github.GTNewHorizons:ForgeMultipart:1.5.0:dev') {transitive = false} - compileOnly('com.github.GTNewHorizons:GT5-Unofficial:5.09.48.105:dev') {transitive = false} + compileOnly('com.github.GTNewHorizons:GT5-Unofficial:5.09.48.113:dev') {transitive = false} compileOnly('com.github.GTNewHorizons:Jabba:1.4.6:dev') {transitive = false} compileOnly('com.github.GTNewHorizons:inventory-tweaks:1.6.2:api') {transitive = false} compileOnly('com.github.GTNewHorizons:OpenComputers:1.10.16-GTNH:api') {transitive = false} @@ -34,7 +34,7 @@ dependencies { functionalTestImplementation('org.junit.platform:junit-platform-engine') functionalTestImplementation('org.junit.platform:junit-platform-launcher') functionalTestImplementation('org.junit.platform:junit-platform-reporting') - functionalTestImplementation('com.github.GTNewHorizons:GT5-Unofficial:5.09.48.105:dev') { + functionalTestImplementation('com.github.GTNewHorizons:GT5-Unofficial:5.09.48.113:dev') { exclude module: "Applied-Energistics-2-Unofficial" } diff --git a/gradle.properties b/gradle.properties index c5d3e5f9b32..18272d72000 100644 --- a/gradle.properties +++ b/gradle.properties @@ -76,6 +76,11 @@ accessTransformersFile = appeng_at.cfg # Provides setup for Mixins if enabled. If you don't know what mixins are: Keep it disabled! usesMixins = false +# Set to a non-empty string to configure mixins in a separate source set under src/VALUE, instead of src/main. +# This can speed up compile times thanks to not running the mixin annotation processor on all input sources. +# Mixin classes will have access to "main" classes, but not the other way around. +separateMixinSourceSet = + # Adds some debug arguments like verbose output and class export. usesMixinDebug = false diff --git a/settings.gradle b/settings.gradle index 804bc1a4c51..8d672bb38fc 100644 --- a/settings.gradle +++ b/settings.gradle @@ -17,7 +17,7 @@ pluginManagement { } plugins { - id 'com.gtnewhorizons.gtnhsettingsconvention' version '1.0.24' + id 'com.gtnewhorizons.gtnhsettingsconvention' version '1.0.25' }