Skip to content

Commit

Permalink
Adds a shadow jar for the CLI and makes it fully executable.
Browse files Browse the repository at this point in the history
  • Loading branch information
shartte committed Dec 12, 2023
1 parent 8f6cfd3 commit 38d54ed
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion unpick-cli/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
plugins {
id 'com.github.johnrengelman.shadow' version '8.1.+'
id 'java'
}

dependencies {
implementation project(':')
implementation project(':unpick-format-utils')
}
}

jar {
manifest {
attributes 'Main-Class': 'daomephsta.unpick.cli.Main'
}
}

0 comments on commit 38d54ed

Please sign in to comment.