X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=blobdiff_plain;f=build.gradle;h=51398e8eda47a2c80bfc2b2a9cf3591a5ce9bcac;hp=82d6d33d4ae1ab2bdbef3dd497b60b83ba34fe71;hb=5e6b4fe5fec1ca7d88633811027155dcba20234c;hpb=2a98ce36d76a707774ad9604012b620c96c825c1 diff --git a/build.gradle b/build.gradle index 82d6d33..51398e8 100644 --- a/build.gradle +++ b/build.gradle @@ -7,7 +7,7 @@ buildscript { } dependencies { classpath group: 'info.solidsoft.gradle.pitest', name: 'gradle-pitest-plugin', version: '1.1.11' - classpath group: 'org.jetbrains.kotlin', name: 'kotlin-gradle-plugin', version: '1.1.50' + classpath group: 'org.jetbrains.kotlin', name: 'kotlin-gradle-plugin', version: '1.1.51' } } @@ -55,6 +55,8 @@ dependencies { testCompile group: 'org.hamcrest', name: 'hamcrest-all', version: '1.3' } +apply from: 'version.gradle' + task fatJar(type: Jar) { archiveName = project.name + '-jar-with-dependencies.jar' from { (configurations.runtime - configurations.provided).collect { it.isDirectory() ? it : zipTree(it) } }