Skip to content

Commit

Permalink
Reduce dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Johann Bernhardt committed Nov 24, 2021
1 parent f484211 commit 41746de
Showing 1 changed file with 21 additions and 4 deletions.
25 changes: 21 additions & 4 deletions dependencies.gradle
Original file line number Diff line number Diff line change
@@ -1,9 +1,26 @@
// Add your dependencies here

dependencies {
compile("com.github.GTNewHorizons:TinkersConstruct:master-SNAPSHOT:dev")
compile("com.github.GTNewHorizons:waila:master-SNAPSHOT:dev")

compileOnly("curse.maven:minefactory-reloaded-66672:2366150")
compileOnly("thaumcraft:Thaumcraft:1.7.10-4.2.3.5:dev")
compile("com.github.GTNewHorizons:Mantle:master-SNAPSHOT:dev")

compileOnly("com.github.GTNewHorizons:waila:master-SNAPSHOT:dev") {
transitive = false
}
compileOnly("com.github.GTNewHorizons:ForgeMultipart:master-SNAPSHOT:dev") {
transitive = false
}
compileOnly("com.github.GTNewHorizons:NotEnoughItems:master-SNAPSHOT:dev") {
transitive = false
}
compileOnly("com.github.GTNewHorizons:TinkersConstruct:master-SNAPSHOT:dev") {
transitive = false
}

compileOnly("curse.maven:minefactory-reloaded-66672:2366150") {
transitive = false
}
compileOnly("thaumcraft:Thaumcraft:1.7.10-4.2.3.5:dev") {
transitive = false
}
}

0 comments on commit 41746de

Please sign in to comment.