aboutsummaryrefslogtreecommitdiffstats
path: root/build.gradle
diff options
context:
space:
mode:
authorLibravatar modmuss50 <[email protected]>2023-07-05 19:47:49 +0100
committerLibravatar modmuss50 <[email protected]>2023-07-05 19:47:49 +0100
commit83fc4031afd288a33d583b0e2a675dd0bd5e36bb (patch)
tree19a005f575ce87620a5f1802cd1e518dca07c016 /build.gradle
parent1.20.1 (diff)
Update to Loom 1.3 and Gradle 8.2
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle16
1 files changed, 8 insertions, 8 deletions
diff --git a/build.gradle b/build.gradle
index a8bdc34..66710fb 100644
--- a/build.gradle
+++ b/build.gradle
@@ -1,5 +1,5 @@
plugins {
- id 'fabric-loom' version '1.2-SNAPSHOT'
+ id 'fabric-loom' version '1.3-SNAPSHOT'
id 'maven-publish'
}
@@ -21,12 +21,12 @@ repositories {
loom {
splitEnvironmentSourceSets()
- mods {
- "modid" {
- sourceSet sourceSets.main
- sourceSet sourceSets.client
- }
- }
+ mods {
+ "modid" {
+ sourceSet sourceSets.main
+ sourceSet sourceSets.client
+ }
+ }
}
@@ -69,7 +69,7 @@ java {
jar {
from("LICENSE") {
- rename { "${it}_${project.archivesBaseName}"}
+ rename { "${it}_${project.base.archivesName.get()}"}
}
}