diff options
author | LifeIsAParadox <LifeIsAParadox@users.noreply.github.com> | 2021-12-12 21:59:35 +0100 |
---|---|---|
committer | LifeIsAParadox <LifeIsAParadox@users.noreply.github.com> | 2021-12-12 21:59:35 +0100 |
commit | e5e2ae1471b5f7c68d19ca13f83b443a9361d261 (patch) | |
tree | 77a3f7ca7a5cab83a2bf525c28733ed807c07aca | |
parent | ada965285c6b2d8d87585579eb14870491031727 (diff) | |
download | Skyblocker-e5e2ae1471b5f7c68d19ca13f83b443a9361d261.tar.gz Skyblocker-e5e2ae1471b5f7c68d19ca13f83b443a9361d261.tar.bz2 Skyblocker-e5e2ae1471b5f7c68d19ca13f83b443a9361d261.zip |
fix deprecated stuff
-rw-r--r-- | build.gradle | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/build.gradle b/build.gradle index ae8f6013..fc535314 100644 --- a/build.gradle +++ b/build.gradle @@ -119,13 +119,7 @@ task publishModrinth(type: TaskModrinthUpload) { 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 } } |