From 6ceaf85b6816b0a299612f385d6a11d2344eaccf Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 20 Jan 2022 15:09:21 +1100 Subject: Buildscript Changes --- dependencies.gradle | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 dependencies.gradle (limited to 'dependencies.gradle') diff --git a/dependencies.gradle b/dependencies.gradle new file mode 100644 index 0000000000..37707d6133 --- /dev/null +++ b/dependencies.gradle @@ -0,0 +1,46 @@ +// Add your dependencies here + +dependencies { + compile("com.github.GTNewHorizons:GT5-Unofficial:5.09.40.18:dev") + compile("com.github.GTNewHorizons:StructureLib:1.0.14:dev") + compile("net.industrial-craft:industrialcraft-2:2.2.828-experimental:dev") + + compile("com.github.GTNewHorizons:NotEnoughItems:2.1.22-GTNH:dev") + compileOnly("com.github.GTNewHorizons:EnderCore:0.2.6:dev") { + transitive = false + } + compileOnly("com.github.GTNewHorizons:Applied-Energistics-2-Unofficial:rv3-beta-70-GTNH:dev") { + transitive = false + } + compileOnly("com.github.GTNewHorizons:bartworks:0.5.34:dev") { + transitive = false + } + compileOnly("com.github.GTNewHorizons:GTplusplus:1.7.24:dev") { + transitive = false + } + compileOnly("com.github.GTNewHorizons:AppleCore:3.1.6:dev") { + transitive = false + } + compileOnly("com.github.GTNewHorizons:TecTech:4.10.15:dev") { + transitive = false + } + compileOnly("com.github.GTNewHorizons:ForestryMC:4.4.4:dev") { + transitive = false + } + compileOnly("com.github.GTNewHorizons:Railcraft:9.13.5:dev") { + transitive = false + } + compileOnly("com.github.GTNewHorizons:EnderIO:2.3.1.27:dev") { + transitive = false + } + compileOnly("com.mod-buildcraft:buildcraft:7.1.23:dev") { + transitive = false + } + compileOnly("com.github.GTNewHorizons:ExtraCells2:2.5.4:dev") { + transitive = false + } +/* compileOnly("com.github.GTNewHorizons:Avaritia:1.22) { + setChanging(true) + }*/ + compile files('Thaumcraft-1.7.10-4.2.3.5.deobf.jar') +} -- cgit From 137111ae085f99fd827b5aab424ae130a037ecdc Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 20 Jan 2022 15:38:16 +1100 Subject: Fixed CCL/CCC dependencies --- dependencies.gradle | 4 +++ dependencies.gradle.bak | 5 ---- gradle.properties.bak | 65 ------------------------------------------------- 3 files changed, 4 insertions(+), 70 deletions(-) delete mode 100644 dependencies.gradle.bak delete mode 100644 gradle.properties.bak (limited to 'dependencies.gradle') diff --git a/dependencies.gradle b/dependencies.gradle index 37707d6133..91f5a10c4e 100644 --- a/dependencies.gradle +++ b/dependencies.gradle @@ -36,6 +36,10 @@ dependencies { compileOnly("com.mod-buildcraft:buildcraft:7.1.23:dev") { transitive = false } + + compile("com.github.GTNewHorizons:CodeChickenLib:1.1.5.1:dev") + compile("com.github.GTNewHorizons:CodeChickenCore:1.1.3:dev") + compileOnly("com.github.GTNewHorizons:ExtraCells2:2.5.4:dev") { transitive = false } diff --git a/dependencies.gradle.bak b/dependencies.gradle.bak deleted file mode 100644 index b6456d02b6..0000000000 --- a/dependencies.gradle.bak +++ /dev/null @@ -1,5 +0,0 @@ -// Add your dependencies here - -dependencies { - -} diff --git a/gradle.properties.bak b/gradle.properties.bak deleted file mode 100644 index e72ff902a5..0000000000 --- a/gradle.properties.bak +++ /dev/null @@ -1,65 +0,0 @@ -# This is a case-sensitive string to identify your mod. Convention is to use lower case. -modId = GoodGenerator - -modGroup = GoodGenerator - -# WHY is there no version field? -# The build script relies on git to provide a version via tags. It is super easy and will enable you to always know the -# code base or your binary. Check out this tutorial: https://blog.mattclemente.com/2017/10/13/versioning-with-git-tags/ - -# Will update your build.gradle automatically whenever an update is available -autoUpdateBuildScript = false - -minecraftVersion = 1.7.10 -forgeVersion = 10.13.4.1614-1.7.10 - -# Select a username for testing your mod with breakpoints. You may leave this empty for a random user name each time you -# restart Minecraft in development. Choose this dependent on your mod: -# Do you need consistent player progressing (for example Thaumcraft)? -> Select a name -# Do you need to test how your custom blocks interacts with a player that is not the owner? -> leave name empty -developmentEnvironmentUserName = Developer - -# Define a source file of your project with: -# public static final String VERSION = "GRADLETOKEN_VERSION"; -# The string's content will be replaced with your mods 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 = GoodGenerator.java -gradleTokenModId = GRADLETOKEN_MODID -gradleTokenModName = GRADLETOKEN_MODNAME -gradleTokenVersion = GRADLETOKEN_VERSION -gradleTokenGroupName = GRADLETOKEN_GROUPNAME - -# 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 -apiPackage = - -# Specify the configuration file for Forge's access transformers here. I must be placed into /src/main/resources/META-INF/ -# Example value: mymodid_at.cfg -accessTransformersFile = - -# Provides setup for Mixins if enabled. If you don't know what mixins are: Keep it disabled! -usesMixins = false -# Specify the location of your implementation of IMixinConfigPlugin. Leave it empty otherwise. -mixinPlugin = -# Specify the package that contains all of your Mixins. You may only place Mixins in this package or the build will fail! -mixinsPackage = -# Specify the core mod entry class if you use a core mod. This class must implement IFMLLoadingPlugin! -# This parameter is for legacy compatibility only -# Example value: coreModClass = asm.FMLPlugin + modGroup = com.myname.mymodid -> com.myname.mymodid.asm.FMLPlugin -coreModClass = -# If your project is only a consolidation of mixins or a core mod and does NOT contain a 'normal' mod ( = some class -# that is annotated with @Mod) you want this to be true. When in doubt: leave it on false! -containsMixinsAndOrCoreModOnly = false - -# If enabled, you may use 'shadowCompile' for dependencies. They will be integrated in your jar. It is your -# responsibility check the licence and request permission for distribution, if required. -usesShadowedDependencies = false - -# Optional parameter to customize the produced artifacts. Use this to preserver artifact naming when migrating older -# projects. New projects should not use this parameter. -#customArchiveBaseName = - -# Optional parameter to prevent the source code from being published -# noPublishedSources = -- cgit From 2fd47135d893c793aac5b8256ba372fb48c6398b Mon Sep 17 00:00:00 2001 From: Jason Mitchell Date: Wed, 19 Jan 2022 21:03:50 -0800 Subject: a few deps --- dependencies.gradle | 13 +++++-------- repositories.gradle | 6 +++--- 2 files changed, 8 insertions(+), 11 deletions(-) (limited to 'dependencies.gradle') diff --git a/dependencies.gradle b/dependencies.gradle index 91f5a10c4e..fb7f4b0308 100644 --- a/dependencies.gradle +++ b/dependencies.gradle @@ -12,18 +12,14 @@ dependencies { compileOnly("com.github.GTNewHorizons:Applied-Energistics-2-Unofficial:rv3-beta-70-GTNH:dev") { transitive = false } - compileOnly("com.github.GTNewHorizons:bartworks:0.5.34:dev") { - transitive = false - } + compile("com.github.GTNewHorizons:bartworks:0.5.34:dev") compileOnly("com.github.GTNewHorizons:GTplusplus:1.7.24:dev") { transitive = false } compileOnly("com.github.GTNewHorizons:AppleCore:3.1.6:dev") { transitive = false } - compileOnly("com.github.GTNewHorizons:TecTech:4.10.15:dev") { - transitive = false - } + compile("com.github.GTNewHorizons:TecTech:4.10.15:dev") compileOnly("com.github.GTNewHorizons:ForestryMC:4.4.4:dev") { transitive = false } @@ -37,9 +33,10 @@ dependencies { transitive = false } - compile("com.github.GTNewHorizons:CodeChickenLib:1.1.5.1:dev") + compile("com.github.GTNewHorizons:CodeChickenLib:1.1.5.1:dev") compile("com.github.GTNewHorizons:CodeChickenCore:1.1.3:dev") - + runtime("com.github.GTNewHorizons:Baubles:1.0.1.14:dev") + runtime("com.github.GTNewHorizons:Yamcl:0.5.82:dev") compileOnly("com.github.GTNewHorizons:ExtraCells2:2.5.4:dev") { transitive = false } diff --git a/repositories.gradle b/repositories.gradle index 6447dfa648..7333c199b8 100644 --- a/repositories.gradle +++ b/repositories.gradle @@ -16,9 +16,6 @@ repositories { } - maven { - url = "https://jitpack.io" - } maven { name = "gt" url = "https://gregtech.overminddl1.com/" @@ -30,4 +27,7 @@ repositories { maven { url = "http://www.ryanliptak.com/maven/" } + maven { + url = "https://jitpack.io" + } } -- cgit