Skip to content
This repository has been archived by the owner on Mar 16, 2020. It is now read-only.

Commit

Permalink
Implement JAR file creation
Browse files Browse the repository at this point in the history
  • Loading branch information
Parcly-Taxel committed Aug 18, 2019
1 parent 7050188 commit 74a6582
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 "duke"
Expand All @@ -14,6 +15,13 @@ dependencies {
testImplementation "org.junit.jupiter:junit-jupiter:5.5.1"
}

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

application {
mainClassName = "duke.Main"
}
Expand Down

0 comments on commit 74a6582

Please sign in to comment.