Skip to content

Commit

Permalink
sets gradle version and applies shadowjar plugin after mainclass def
Browse files Browse the repository at this point in the history
  • Loading branch information
shawnrc committed Jul 15, 2018
1 parent 2e415cb commit 1c557b1
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,15 @@ plugins {
id 'org.jetbrains.kotlin.jvm' version '1.2.51'
id 'java'
id 'application'
id 'com.github.johnrengelman.shadow' version '2.0.4'
}

group = 'me.shawnrc'
version = '1.1.0'
sourceCompatibility = 1.8
mainClassName = 'me.shawnrc.kemohno.KemohnoKt'

apply plugin: 'com.github.johnrengelman.shadow'

repositories {
mavenCentral()
jcenter()
Expand All @@ -44,3 +45,7 @@ dependencies {
task stage {
dependsOn installDist
}

wrapper {
gradleVersion = '4.8'
}

0 comments on commit 1c557b1

Please sign in to comment.