Skip to content

Commit

Permalink
not working
Browse files Browse the repository at this point in the history
  • Loading branch information
bombcar committed Feb 1, 2022
1 parent 49bc37a commit be1ea88
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 21 deletions.
24 changes: 15 additions & 9 deletions dependencies.gradle
Original file line number Diff line number Diff line change
@@ -1,21 +1,27 @@
// Add your dependencies here

dependencies {
compile(deobf("https://media.forgecdn.net/files/2499/612/BiomesOPlenty-1.7.10-2.1.0.2308-universal.jar"))
compile("com.github.GTNewHorizons:twilightforest:master-SNAPSHOT:dev")
compile("com.github.GTNewHorizons:CropLoadCore:master-SNAPSHOT:dev")
compile("com.github.GTNewHorizons:TinkersConstruct:1.9.0.12-GTNH:dev")
compile("com.github.GTNewHorizons:Natura:2.4.9:dev")
compile("com.github.GTNewHorizons:NotEnoughItems:2.2.3-GTNH:dev")
compile("com.github.GTNewHorizons:NewHorizonsCoreMod:1.9.19:dev") {
compile("com.github.GTNewHorizons:CropLoadCore:0.1.7:dev")
compile("net.industrial-craft:industrialcraft-2:2.2.828-experimental: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.3.8.13:dev") {
transitive = false
}
compile "net.industrial-craft:industrialcraft-2:2.2.828-experimental:dev"
compile("com.github.GTNewHorizons:GT5-Unofficial:5.09.40.19:dev") {
compileOnly("com.github.GTNewHorizons:TinkersConstruct:1.9.0.12-GTNH:dev")
compileOnly("com.github.GTNewHorizons:Natura:2.4.9:dev") {
transitive = false
}
compileOnly("com.github.GTNewHorizons:NotEnoughItems:2.2.3-GTNH:dev")
compileOnly("com.github.GTNewHorizons:NewHorizonsCoreMod:1.9.19:dev") {
transitive = false
}
compileOnly("com.github.GTNewHorizons:GT5-Unofficial:5.09.40.19:dev") {
transitive = false
}
compileOnly("com.github.GTNewHorizons:Galacticraft:3.0.37-GTNH:dev") {
transitive = false
}
compileOnly("thaumcraft:Thaumcraft:1.7.10-4.2.3.5:dev")

runtime("curse.maven:witchery-69673:2234410") //allow CropLoadCore to run in dev
}
10 changes: 5 additions & 5 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ autoUpdateBuildScript = false
minecraftVersion = 1.7.10
forgeVersion = 10.13.4.1614

# Select a username for testing your mod with breakpoints. You may leave this empty for a random user name each time you
# Select a username for testing your mod with breakpoints. You may leave this empty for a random username 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"
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
# 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 = Cropspp.java
Expand All @@ -37,7 +37,7 @@ gradleTokenGroupName = GRADLETOKEN_GROUPNAME
# 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/
# Specify the configuration file for Forge's access transformers here. It must be placed into /src/main/resources/META-INF/
# Example value: mymodid_at.cfg
accessTransformersFile =

Expand All @@ -48,7 +48,7 @@ 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 compatability only
# 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
Expand Down
7 changes: 0 additions & 7 deletions repositories.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,6 @@ repositories {
artifact()
}
}
ivy {
name = 'gtnh_download_source'
artifactPattern("http://downloads.gtnewhorizons.com/Mods_for_Jenkins/[module]-[revision].[ext]")
metadataSources {
artifact()
}
}
maven {
name "CurseForge Maven"
url "https://minecraft.curseforge.com/api/maven/"
Expand Down

0 comments on commit be1ea88

Please sign in to comment.