Disable modularization
The modularization file was heavily interfering with the addition and usage of the commons-cli dependency which does not have a static module name. Since the benefits it gave this very small application were miniscule, I have decided to delete / comment out all relevant configuration
This commit is contained in:
parent
1a25963371
commit
ddf8047ebd
2 changed files with 3 additions and 5 deletions
|
@ -40,8 +40,8 @@ tasks.jar {
|
||||||
attributes(
|
attributes(
|
||||||
"Implementation-Title" to project.name,
|
"Implementation-Title" to project.name,
|
||||||
"Implementation-Version" to project.version,
|
"Implementation-Version" to project.version,
|
||||||
"Main-Class" to "de.jotoho.waituntil.Main",
|
"Main-Class" to "de.jotoho.waituntil.Main"
|
||||||
"Main-Module" to "de.jotoho.waituntil.main"
|
//"Main-Module" to "de.jotoho.waituntil.main"
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -49,5 +49,5 @@ tasks.jar {
|
||||||
application {
|
application {
|
||||||
// Define the main class for the application.
|
// Define the main class for the application.
|
||||||
mainClass.set("de.jotoho.waituntil.Main")
|
mainClass.set("de.jotoho.waituntil.Main")
|
||||||
mainModule.set("de.jotoho.waituntil.main")
|
//mainModule.set("de.jotoho.waituntil.main")
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,2 +0,0 @@
|
||||||
module de.jotoho.waituntil.main {
|
|
||||||
}
|
|
Loading…
Reference in a new issue