diff options
Diffstat (limited to 'build.gradle.kts')
-rw-r--r-- | build.gradle.kts | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/build.gradle.kts b/build.gradle.kts index c439e86..c48d666 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -32,6 +32,7 @@ repositories { includeGroup("maven.modrinth") } } + maven("https://server.bbkr.space/artifactory/libs-release") mavenLocal() } @@ -64,6 +65,7 @@ dependencies { transInclude(implementation(ktor("client-java"))!!) transInclude(implementation(ktor("serialization-kotlinx-json"))!!) transInclude(implementation(ktor("client-content-negotiation"))!!) + modImplementation(include("io.github.cottonmc:LibGui:${project.property("libgui_version")}")!!) // Dev environment preinstalled mods modRuntimeOnly("me.shedaniel:RoughlyEnoughItems-fabric:${project.property("rei_version")}") @@ -110,3 +112,10 @@ tasks.remapJar { dependsOn(tasks.shadowJar) archiveClassifier.set("thicc") } +tasks.processResources { + filesMatching("**/fabric.mod.json") { + expand( + "version" to project.version + ) + } +}
\ No newline at end of file |