X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=blobdiff_plain;f=build.gradle;h=c2247d357a119db5d29cb041831b6dcd1750978e;hp=b8ea16cbc7bc298c05b47289c8544d45ebab0313;hb=64740709990291688170ebd1f192af5eb9090618;hpb=7625c3f0be6df7e5fe2fc3b58019614f8a915888 diff --git a/build.gradle b/build.gradle index b8ea16c..c2247d3 100644 --- a/build.gradle +++ b/build.gradle @@ -76,6 +76,7 @@ task notParallelTest(type: Test) { useJUnit { includeCategories 'net.pterodactylus.sone.test.NotParallel' } + dependsOn parallelTest } test { @@ -84,7 +85,7 @@ test { } task fatJar(type: Jar) { - archiveName = project.name.toLowerCase() + '-jar-with-dependencies.jar' + archiveFileName = 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')