mirror of
https://github.com/PuzzleMC/Puzzle.git
synced 2025-12-15 19:35:10 +01:00
- Port to 1.20.2 - Improve stability by skipping outdated compat entries - Update EMF integration
64 lines
2.4 KiB
Groovy
Executable File
64 lines
2.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"
|
|
}
|
|
}
|
|
maven {
|
|
name = 'JitPack'
|
|
url 'https://jitpack.io'
|
|
}
|
|
maven {
|
|
url "https://maven.shedaniel.me/"
|
|
}
|
|
maven { url "https://maven.quiltmc.org/repository/release/" }
|
|
}
|
|
|
|
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}")
|
|
modCompileOnlyApi ("maven.modrinth:lambdabettergrass:${project.lbg_version}")
|
|
modCompileOnly "org.quiltmc:quilt-loader:${rootProject.quilt_loader_version}"
|
|
modCompileOnlyApi "org.quiltmc.quilted-fabric-api:quilted-fabric-api:${rootProject.quilt_fabric_api_version}"
|
|
modCompileOnlyApi ("maven.modrinth:iris:${project.iris_version}")
|
|
modCompileOnly ("maven.modrinth:cit-resewn:${project.cit_resewn_version}")
|
|
modCompileOnlyApi ("maven.modrinth:continuity:${project.continuity_version}")
|
|
modCompileOnlyApi ("maven.modrinth:animatica:${project.animatica_version}")
|
|
modCompileOnlyApi ("maven.modrinth:colormatic:${project.colormatic_version}")
|
|
modImplementation ("maven.modrinth:borderless-mining:${project.borderless_mining_version}")
|
|
modImplementation ("maven.modrinth:dynamic-fps:${project.dynamic_fps_version}")
|
|
modImplementation("com.moandjiezana.toml:toml4j:${project.toml4j_version}")
|
|
modImplementation ("maven.modrinth:entitytexturefeatures:${project.etf_version}")
|
|
modImplementation ("maven.modrinth:entity-model-features:${project.emf_version}")
|
|
modImplementation ("maven.modrinth:completeconfig:${project.complete_config_version}")
|
|
modImplementation ("maven.modrinth:exordium:${project.exordium_version}")
|
|
|
|
modImplementation("org.aperlambda:lambdajcommon:1.8.1") {
|
|
exclude group: 'com.google.code.gson'
|
|
exclude group: 'com.google.guava'
|
|
}
|
|
}
|