diff options
author | Anthony Hilyard <anthony.hilyard@gmail.com> | 2023-08-07 10:32:03 -0700 |
---|---|---|
committer | Anthony Hilyard <anthony.hilyard@gmail.com> | 2023-08-07 10:32:03 -0700 |
commit | f37e965d1f2a8d8aa26c9673bc1c1fb732c22ecc (patch) | |
tree | 555ce3ecfd68a51668f2a2024261d024e0cdd9eb /build.gradle | |
parent | 4916249af135eec5ca9624d9af1716f2c2364682 (diff) | |
download | Iceberg-f37e965d1f2a8d8aa26c9673bc1c1fb732c22ecc.tar.gz Iceberg-f37e965d1f2a8d8aa26c9673bc1c1fb732c22ecc.tar.bz2 Iceberg-f37e965d1f2a8d8aa26c9673bc1c1fb732c22ecc.zip |
Ported to 1.20.
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/build.gradle b/build.gradle index 7e0aaaf..d7be997 100644 --- a/build.gradle +++ b/build.gradle @@ -23,7 +23,7 @@ dependencies { mappings loom.officialMojangMappings() modImplementation "net.fabricmc:fabric-loader:${project.loaderVersion}" modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabricVersion}" - modImplementation files("libs/sodium-fabric-mc1.19.4-0.4.10+build.24.jar") + modImplementation files("libs/sodium-fabric-mc1.20-0.4.10+build.27.jar") } loom { @@ -43,10 +43,6 @@ tasks.withType(JavaCompile).configureEach { it.options.release = 17 } -java { - withSourcesJar() -} - jar { from("LICENSE") { rename { "${it}_${project.archivesBaseName}"} |