Shadow jar
This commit is contained in:
parent
8a88e8b45a
commit
75fd5259bf
2 changed files with 6 additions and 2 deletions
|
@ -8,6 +8,7 @@
|
||||||
plugins {
|
plugins {
|
||||||
// Apply the application plugin to add support for building a CLI application in Java.
|
// Apply the application plugin to add support for building a CLI application in Java.
|
||||||
application
|
application
|
||||||
|
id("com.github.johnrengelman.shadow") version "8.1.1"
|
||||||
}
|
}
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
|
|
5
makefile
5
makefile
|
@ -1,3 +1,6 @@
|
||||||
|
build:
|
||||||
|
./gradlew shadowJar
|
||||||
|
|
||||||
run:
|
run:
|
||||||
./gradlew run
|
./gradlew run
|
||||||
|
|
||||||
|
@ -7,4 +10,4 @@ clean:
|
||||||
test:
|
test:
|
||||||
./gradlew test
|
./gradlew test
|
||||||
|
|
||||||
.PHONY: run clean test
|
.PHONY: run clean test build
|
Loading…
Reference in a new issue