diff --git a/dependencies.gradle b/dependencies.gradle index d1e4a575..b6cbe350 100644 --- a/dependencies.gradle +++ b/dependencies.gradle @@ -1,10 +1,10 @@ // Add your dependencies here dependencies { - implementation('com.github.GTNewHorizons:GTNHLib:0.1.0:dev') - implementation("com.github.GTNewHorizons:NotEnoughItems:2.5.4-GTNH:dev") + implementation('com.github.GTNewHorizons:GTNHLib:0.2.7:dev') + implementation("com.github.GTNewHorizons:NotEnoughItems:2.5.21-GTNH:dev") compileOnly("curse.maven:cofh-core-69162:2388750-dev:dev") // for testing - //runtimeOnlyNonPublishable("com.github.GTNewHorizons:EnderIO:2.6.3:dev") { transitive = false } + //runtimeOnlyNonPublishable("com.github.GTNewHorizons:EnderIO:2.7.1:dev") { transitive = false } } diff --git a/gradle.properties b/gradle.properties index 37069067..36fe48b8 100644 --- a/gradle.properties +++ b/gradle.properties @@ -55,6 +55,14 @@ generateGradleTokenClass = com.enderio.core.EnderCoreTags # Name of the token containing the project's current version to generate/replace. gradleTokenVersion = VERSION +# [DEPRECATED] +# Multiple source files can be defined here by providing a comma-separated list: Class1.java,Class2.java,Class3.java +# public static final String VERSION = "GRADLETOKEN_VERSION"; +# The string's content will be replaced with your mod's version when compiled. You should use this to specify your mod's +# version in @Mod([...], version = VERSION, [...]). +# Leave these properties empty to skip individual token replacements. +# replaceGradleTokenInFile = + # In case your mod provides an API for other mods to implement you may declare its package here. Otherwise, you can # leave this property empty. # Example value: (apiPackage = api) + (modGroup = com.myname.mymodid) -> com.myname.mymodid.api