diff options
author | Juuz <6596629+Juuxel@users.noreply.github.com> | 2021-09-11 02:55:44 +0300 |
---|---|---|
committer | Juuz <6596629+Juuxel@users.noreply.github.com> | 2021-09-11 02:55:44 +0300 |
commit | f577b87ac46ec0e96d4ab909dcef1f6995eb1106 (patch) | |
tree | 8c357238c5d446a0df0823b45e1c8082d3509091 | |
parent | 113214634e5262ca924893564a9c42a00df246a5 (diff) | |
download | LibGui-f577b87ac46ec0e96d4ab909dcef1f6995eb1106.tar.gz LibGui-f577b87ac46ec0e96d4ab909dcef1f6995eb1106.tar.bz2 LibGui-f577b87ac46ec0e96d4ab909dcef1f6995eb1106.zip |
Revert "Loom 0.10!"
This reverts commit 11321463.
Apparently it's not stable enough to use yet :sob:
-rw-r--r-- | build.gradle | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/build.gradle b/build.gradle index 8a26652..4e6d927 100644 --- a/build.gradle +++ b/build.gradle @@ -1,6 +1,6 @@ plugins { - id 'fabric-loom' version '0.10-SNAPSHOT' - id 'io.github.juuxel.loom-quiltflower' version '1.3.0' + id 'fabric-loom' version '0.9-SNAPSHOT' + id 'io.github.juuxel.loom-quiltflower' version '1.1.2' id 'maven-publish' id 'checkstyle' } @@ -45,7 +45,8 @@ dependencies { modImplementation "io.github.cottonmc:Jankson-Fabric:${project.jankson_version}" include "io.github.cottonmc:Jankson-Fabric:${project.jankson_version}" - include api("io.github.juuxel:libninepatch:${project.libninepatch_version}") + // Using modApi instead of api because of https://github.com/FabricMC/fabric-loom/issues/200 + include modApi("io.github.juuxel:libninepatch:${project.libninepatch_version}") modRuntime(modCompileOnly("com.terraformersmc:modmenu:$project.modmenu_version") { exclude group: 'net.fabricmc.fabric-api' @@ -103,7 +104,15 @@ javadoc { publishing { publications { maven(MavenPublication) { - from components.java + artifact(remapJar) { + builtBy remapJar + } + + artifact(sourcesJar) { + builtBy remapSourcesJar + } + + artifact(javadocJar) } } |