X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=blobdiff_plain;f=build.gradle;h=fbc09b8c57e30f0a559d2a2f8f0a86eef1d00374;hp=4c488f75cc52194dcb09d5a35f1c83a58b1aed48;hb=550a4075b37507fa6b2c9bddd68ea564973d0e2e;hpb=fcc0aaae023bbb60b76b5410ee3efc8fdb3d6504 diff --git a/build.gradle b/build.gradle index 4c488f7..fbc09b8 100644 --- a/build.gradle +++ b/build.gradle @@ -65,7 +65,7 @@ test { } task fatJar(type: Jar) { - archiveName = project.name + '-jar-with-dependencies.jar' + archiveName = project.name.toLowerCase() + '-jar-with-dependencies.jar' from { (configurations.runtime - configurations.provided).collect { it.isDirectory() ? it : zipTree(it) } } manifest { attributes('Plugin-Main-Class': 'net.pterodactylus.sone.main.SonePlugin')