Skip to content

Commit

Permalink
organize dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
FalsePattern committed Dec 1, 2024
1 parent 36c4123 commit a59ee41
Showing 1 changed file with 14 additions and 26 deletions.
40 changes: 14 additions & 26 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
plugins {
id("fpgradle-minecraft") version("0.8.2")
id("fpgradle-minecraft") version ("0.8.2")
}

group = "com.falsepattern"

minecraft_fp {
mod {
modid = "falsetweaks"
name = "FalseTweaks"
modid = "falsetweaks"
name = "FalseTweaks"
rootPkg = "$group.falsetweaks"
}

Expand Down Expand Up @@ -72,39 +72,29 @@ repositories {

dependencies {
implementationSplit("com.falsepattern:falsepatternlib-mc1.7.10:1.4.4")

compileOnly(deobf("optifine:optifine:1.7.10_hd_u_e7"))

compileOnly("com.github.GTNewHorizons:GTNHLib:0.5.20:api")

implementation("org.joml:joml:1.10.5")
implementation("it.unimi.dsi:fastutil:8.5.13")

compileOnly(deobfCurse("redstone-paste-67508:2211249"))

//V33b
compileOnly(deobfCurse("dragonapi-235591:4722480"))

compileOnly("makamys:neodymium-mc1.7.10:0.4.0-unofficial:dev")

compileOnly("com.github.basdxz:Apparatus:2.12.3:dev") {
excludeDeps()
}
compileOnly(deobf("optifine:optifine:1.7.10_hd_u_e7"))

compileOnly("com.github.jss2a98aj:NotFine:0.2.5:dev") {
excludeDeps()
}
compileOnly("com.github.GTNewHorizons:GTNHLib:0.5.20:api")

compileOnly("com.github.basdxz:Apparatus:2.12.3:dev") { excludeDeps() }
compileOnly("com.github.jss2a98aj:NotFine:0.2.5:dev") { excludeDeps() }
compileOnly(deobf("vexatos:Computronics:1.7.10-1.6.6"))
compileOnly(deobf("Mods_for_Twitch:ExtraCells:1.7.10-2.5.0-14"))
// Redstone Paste 1.6.2
compileOnly(deobfCurse("redstonepastemod-67508:2211249"))
// DragonAPI V33b
compileOnly(deobfCurse("dragonapi-235591:4722480"))
// RailCraft 9.12.2.1
compileOnly(deobfCurse("railcraft-51195:2458987"))

// Nuclear Control 2 2.4.5a
compileOnly(deobfCurse("nuclear-control-2-236813:3802063"))
// OpenComputers MC1.7.10-1.8.3+089dd28
compileOnly(deobfCurse("opencomputers-223008:4630534"))
// Computronics 1.7.10-1.6.6
compileOnly(deobf("vexatos:Computronics:1.7.10-1.6.6"))
// ExtraCells 1.7.10-2.5.0-14
compileOnly(deobf("Mods_for_Twitch:ExtraCells:1.7.10-2.5.0-14"))
// Automagy 0.28.2
compileOnly(deobfCurse("automagy-222153:2285272"))
// NTM 1.0.27_X5027
Expand All @@ -113,6 +103,4 @@ dependencies {
compileOnly(deobfCurse("techguns-244201:2429662"))
// Malisis Core 0.14.3
compileOnly(deobfCurse("malisiscore-223896:2283267"))

compileOnly("codechicken:codechickencore-mc1.7.10:1.4.0-mega:dev")
}

0 comments on commit a59ee41

Please sign in to comment.