X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=blobdiff_plain;f=build.gradle;h=51398e8eda47a2c80bfc2b2a9cf3591a5ce9bcac;hp=3aef806277ae3c514649ed205358b9e6afdb312f;hb=5e6b4fe5fec1ca7d88633811027155dcba20234c;hpb=a9c1df087ed8316d8c5573940b638f8c9c15392f diff --git a/build.gradle b/build.gradle index 3aef806..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.4-3' + 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) } }