Added main method for command line usage

This commit is contained in:
Geert Bevin 2023-01-01 02:49:58 -05:00
parent 9af78b38d9
commit 3171b82ae1
2 changed files with 42 additions and 0 deletions

View file

@ -21,6 +21,12 @@ java {
}
}
tasks.jar {
manifest {
attributes["Main-Class"] = "com.uwyn.urlencoder.UrlEncoder"
}
}
tasks.jacocoTestReport {
reports {
xml.required.set(true)