diff options
author | Marvin Borner | 2019-05-01 15:33:42 +0200 |
---|---|---|
committer | Marvin Borner | 2019-05-01 15:33:42 +0200 |
commit | 8549c68cfcf4caabb696152f36facc074129ebcf (patch) | |
tree | 35281a88f1894cf3b96c938373a249548bfe5e04 /build.gradle | |
parent | a3c10541f945068265d93ae83753dda0ac361164 (diff) |
Added deployment features and functionalityv0.1-BETA
Co-authored-by: LarsVomMars <lars@kroenner.eu>
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/build.gradle b/build.gradle index 1cab197..a93010a 100644 --- a/build.gradle +++ b/build.gradle @@ -10,16 +10,24 @@ buildscript { plugins { id 'org.jetbrains.kotlin.jvm' version '1.3.11' id 'nu.studer.rocker' version '0.4' + id 'com.github.johnrengelman.shadow' version '5.0.0' id 'java' } group "space.anity" -version "1.0-SNAPSHOT" +version "0.1-BETA" +apply plugin: 'java' apply plugin: 'kotlin' apply plugin: 'application' +apply plugin: 'com.github.johnrengelman.shadow' +jar.enabled = false mainClassName = 'space.anity.AppKt' +shadowJar { + baseName = 'kloud' +} + repositories { jcenter() } |