diff options
| author | 2024-04-01 15:36:42 +0100 | |
|---|---|---|
| committer | 2024-04-01 15:36:42 +0100 | |
| commit | 453617dda05c92f6431bfaa053533f9b7b8d0ae2 (patch) | |
| tree | 709157584c6bf1d2d7aae0ae92874a10db50de33 /build.gradle | |
| parent | Loom 1.5 (diff) | |
Update to loom 1.6
Diffstat (limited to 'build.gradle')
| -rw-r--r-- | build.gradle | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/build.gradle b/build.gradle index 1c7d114..a14d12b 100644 --- a/build.gradle +++ b/build.gradle @@ -1,5 +1,5 @@ plugins { - id 'fabric-loom' version '1.5-SNAPSHOT' + id 'fabric-loom' version '1.6-SNAPSHOT' id 'maven-publish' } @@ -39,10 +39,6 @@ dependencies { // Fabric API. This is technically optional, but you probably want it anyway. modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}" - // Uncomment the following line to enable the deprecated Fabric API modules. - // These are included in the Fabric API production distribution and allow you to update your mod to the latest modules at a later more convenient time. - - // modImplementation "net.fabricmc.fabric-api:fabric-api-deprecated:${project.fabric_version}" } processResources { @@ -76,7 +72,7 @@ jar { // configure the maven publication publishing { publications { - mavenJava(MavenPublication) { + create("mavenJava", MavenPublication) { from components.java } } |
