Update to Loom 1.3 and Gradle 8.2

This commit is contained in:
modmuss50 2023-07-05 19:47:49 +01:00
parent 921b564de2
commit 83fc4031af
9 changed files with 39 additions and 35 deletions

View file

@ -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()}"}
}
}