forked from WeaveMC/unpick
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds a shadow jar for the CLI and makes it fully executable (#23)
* Adds a shadow jar for the CLI and makes it fully executable. * Used fixed JUnit version (via BOM) Remove java plugin + build shadow jar alongside normal build.
- Loading branch information
Showing
2 changed files
with
20 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,18 @@ | ||
plugins { | ||
id 'com.github.johnrengelman.shadow' version '8.1.1' | ||
} | ||
|
||
dependencies { | ||
implementation project(':') | ||
implementation project(':unpick-format-utils') | ||
} | ||
} | ||
|
||
jar { | ||
manifest { | ||
attributes 'Main-Class': 'daomephsta.unpick.cli.Main' | ||
} | ||
} | ||
|
||
assemble.configure { | ||
dependsOn shadowJar | ||
} |