mirror of
https://github.com/PuzzleMC/Puzzle.git
synced 2025-12-15 11:25:11 +01:00
- Fix modmenu compat - Better Puzzle settings button based on MidnightLib - Partially fix puzzle-splashscreen
48 lines
1.4 KiB
Groovy
Executable File
48 lines
1.4 KiB
Groovy
Executable File
archivesBaseName = "puzzle-gui"
|
|
|
|
repositories {
|
|
maven { url "https://maven.terraformersmc.com/releases" }
|
|
maven {
|
|
name = 'AperLambda'
|
|
url = 'https://aperlambda.github.io/maven'
|
|
}
|
|
mavenCentral()
|
|
maven {
|
|
name 'Gegy'
|
|
url 'https://maven.gegy.dev'
|
|
}
|
|
maven {
|
|
url = "https://api.modrinth.com/maven"
|
|
}
|
|
maven {
|
|
url "https://www.cursemaven.com"
|
|
content {
|
|
includeGroup "curse.maven"
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
api project(":puzzle-base")
|
|
api project(":puzzle-splashscreen")
|
|
|
|
modImplementation "dev.lambdaurora:spruceui:${project.spruceui_version}"
|
|
modImplementation "maven.modrinth:midnightlib:${project.midnightlib_version}"
|
|
|
|
modImplementation ("com.terraformersmc:modmenu:${project.mod_menu_version}")
|
|
modImplementation ("maven.modrinth:cull-leaves:${project.cull_leaves_version}")
|
|
modImplementation ("maven.modrinth:lambdynamiclights:${project.ldl_version}")
|
|
modImplementation ("maven.modrinth:lambdabettergrass:${project.lbg_version}")
|
|
modImplementation ("maven.modrinth:iris:${project.iris_version}")
|
|
modImplementation ("maven.modrinth:cit-resewn:${project.cit_resewn_version}")
|
|
modImplementation "curse.maven:custom-entity-models-cem-477078:3440846"
|
|
|
|
modImplementation("org.aperlambda:lambdajcommon:1.8.1") {
|
|
exclude group: 'com.google.code.gson'
|
|
exclude group: 'com.google.guava'
|
|
}
|
|
modImplementation ("maven.modrinth:continuity:${project.continuity_version}") {
|
|
exclude module: "modmenu"
|
|
}
|
|
}
|