mirror of
https://github.com/PuzzleMC/Puzzle.git
synced 2025-12-16 11:55:09 +01:00
Puzzle 0.3.0 - 1.17
Modulized into: puzzle-base (update checker + config) puzzle-gui (unified config gui) puzzle-models (remove limitations) puzzle-blocks (custom render layers) puzzle-splashscreen (resourcepack-provided spash screen) Updated to 1.17
This commit is contained in:
33
puzzle-gui/build.gradle
Executable file
33
puzzle-gui/build.gradle
Executable file
@@ -0,0 +1,33 @@
|
||||
archivesBaseName = "puzzle-gui"
|
||||
|
||||
repositories {
|
||||
maven { url "https://maven.terraformersmc.com/releases" }
|
||||
maven {
|
||||
name = 'AperLambda'
|
||||
url = 'https://aperlambda.github.io/maven'
|
||||
}
|
||||
mavenCentral()
|
||||
flatDir {
|
||||
dirs 'local_maven'
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
api project(":puzzle-base")
|
||||
api project(":puzzle-splashscreen")
|
||||
|
||||
api ("com.terraformersmc:modmenu:${project.mod_menu_version}")
|
||||
modImplementation ("eu.midnightdust:cullleaves:${project.cull_leaves_version}")
|
||||
modImplementation ("dev.lambdaurora:lambdynamiclights:${project.ldl_version}")
|
||||
modImplementation ("dev.lambdaurora:lambdabettergrass:${project.lbg_version}")
|
||||
modImplementation ("com.github.IrisShaders:Iris:${project.iris_version}")
|
||||
|
||||
//modImplementation "dev.lambdaurora:spruceui:${project.spruceui_version}" // Needed for Lambda's mods
|
||||
modImplementation("org.aperlambda:lambdajcommon:1.8.1") {
|
||||
exclude group: 'com.google.code.gson'
|
||||
exclude group: 'com.google.guava'
|
||||
}
|
||||
// modImplementation ("com.github.PepperCode1:ConnectedTexturesMod-Fabric:${project.ctmf_version}") {
|
||||
// exclude module: "modmenu"
|
||||
// }
|
||||
}
|
||||
Reference in New Issue
Block a user