aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorJuuz <6596629+Juuxel@users.noreply.github.com>2021-09-11 02:32:39 +0300
committerJuuz <6596629+Juuxel@users.noreply.github.com>2021-09-11 02:32:39 +0300
commit113214634e5262ca924893564a9c42a00df246a5 (patch)
tree21505acb9809bc6ccfafd87a9915477484da5d57 /build.gradle
parentb869aa293cd353ff2bf53266e1526846ab5e52d5 (diff)
downloadLibGui-113214634e5262ca924893564a9c42a00df246a5.tar.gz
LibGui-113214634e5262ca924893564a9c42a00df246a5.tar.bz2
LibGui-113214634e5262ca924893564a9c42a00df246a5.zip
Loom 0.10!
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle17
1 files changed, 4 insertions, 13 deletions
diff --git a/build.gradle b/build.gradle
index 4e6d927..8a26652 100644
--- a/build.gradle
+++ b/build.gradle
@@ -1,6 +1,6 @@
plugins {
- id 'fabric-loom' version '0.9-SNAPSHOT'
- id 'io.github.juuxel.loom-quiltflower' version '1.1.2'
+ id 'fabric-loom' version '0.10-SNAPSHOT'
+ id 'io.github.juuxel.loom-quiltflower' version '1.3.0'
id 'maven-publish'
id 'checkstyle'
}
@@ -45,8 +45,7 @@ dependencies {
modImplementation "io.github.cottonmc:Jankson-Fabric:${project.jankson_version}"
include "io.github.cottonmc:Jankson-Fabric:${project.jankson_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}")
+ include api("io.github.juuxel:libninepatch:${project.libninepatch_version}")
modRuntime(modCompileOnly("com.terraformersmc:modmenu:$project.modmenu_version") {
exclude group: 'net.fabricmc.fabric-api'
@@ -104,15 +103,7 @@ javadoc {
publishing {
publications {
maven(MavenPublication) {
- artifact(remapJar) {
- builtBy remapJar
- }
-
- artifact(sourcesJar) {
- builtBy remapSourcesJar
- }
-
- artifact(javadocJar)
+ from components.java
}
}