forked from Towdium/JustEnoughCalculation
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdependencies.gradle
29 lines (24 loc) · 1.75 KB
/
dependencies.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// Add your dependencies here
dependencies {
// compile("com.github.GTNewHorizons:Applied-Energistics-2-Unofficial:rv3-beta-527-GTNH:dev")
compile("com.github.GTNewHorizons:CodeChickenCore:1.4.1:dev")
compile("com.github.GTNewHorizons:NotEnoughItems:2.7.23-GTNH:dev")
// compile("com.github.GTNewHorizons:Baubles:1.0.4:dev")
// compile("com.github.GTNewHorizons:WirelessCraftingTerminal:1.11.7:dev")
// compileOnly("com.github.GTNewHorizons:AE2FluidCraft-Rework:1.4.23-gtnh:dev") { transitive = false }
// compileOnly("com.github.GTNewHorizons:Avaritiaddons:1.8.4-GTNH:dev") { transitive = false }
// compileOnly("com.github.GTNewHorizons:BuildCraftCompat:7.1.17:dev") { transitive = false }
compileOnly('com.github.GTNewHorizons:EnderIO:2.9.2:dev') { transitive = false }
compileOnly("com.github.GTNewHorizons:ForestryMC:4.10.1:dev") { transitive = false }
compileOnly("com.github.GTNewHorizons:GT5-Unofficial:5.09.51.85:dev") { transitive = false }
// compileOnly("com.github.GTNewHorizons:ThaumicEnergistics:1.7.5-GTNH:dev") { transitive = false }
compileOnly("com.github.GTNewHorizons:Botania:1.12.5-GTNH:dev") { transitive = false }
compileOnly("com.gregoriust.gregtech:gregtech_1.7.10:6.14.23:dev") { transitive = false }
compileOnly("curse.maven:thaumcraft-nei-plugin-225095:2241913") { transitive = false }
// compileOnly("curse.maven:thermal-expansion-69163:2388759") { transitive = false }
// runtime("curse.maven:cofh-core-69162:2388751")
testCompile 'org.junit.jupiter:junit-jupiter-api:5.2.0'
// Required to load in GTNH mods inside the dev environment for testing. Useful for checking item stack label
// generation.
runtimeOnlyNonPublishable("com.github.GTNewHorizons:GT5-Unofficial:5.09.51.85:dev")
}