aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar modmuss50 <[email protected]>2021-11-10 14:29:05 +0000
committerLibravatar modmuss50 <[email protected]>2021-11-10 15:28:04 +0000
commit8adede095a379f0f18984d1ec2b4a46a4b5d29a7 (patch)
tree1ce0f15f858a5e08bdb541b468a593e48b8cefdb
parentUpdate to Gradle 7.3 and also build on Java 17 (diff)
Update to loom 0.10
-rw-r--r--build.gradle10
1 files changed, 2 insertions, 8 deletions
diff --git a/build.gradle b/build.gradle
index c5c7aa8..78c7b65 100644
--- a/build.gradle
+++ b/build.gradle
@@ -1,5 +1,5 @@
plugins {
- id 'fabric-loom' version '0.9-SNAPSHOT'
+ id 'fabric-loom' version '0.10-SNAPSHOT'
id 'maven-publish'
}
@@ -67,13 +67,7 @@ jar {
publishing {
publications {
mavenJava(MavenPublication) {
- // add all the jars that should be included when publishing to maven
- artifact(remapJar) {
- builtBy remapJar
- }
- artifact(sourcesJar) {
- builtBy remapSourcesJar
- }
+ from components.java
}
}