Skip to content

Commit

Permalink
Add shadowJar config to build.gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronCQL committed Jan 29, 2020
1 parent fc56d3f commit 3bfa40b
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
plugins {
id 'java'
id 'application'
id 'com.github.johnrengelman.shadow' version '5.1.0'
}

group 'seedu.duke'
Expand All @@ -25,4 +26,11 @@ application {

run {
standardInput = System.in
}

shadowJar {
archiveBaseName = "duke"
archiveVersion = "0.1.0"
archiveClassifier = null
archiveAppendix = null
}

0 comments on commit 3bfa40b

Please sign in to comment.