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:
Jonas Tobias Hopusch 2022-03-12 03:13:30 +01:00
parent 1a25963371
commit ddf8047ebd
Failed to generate hash of commit
2 changed files with 3 additions and 5 deletions

View file

@ -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")
} }

View file

@ -1,2 +0,0 @@
module de.jotoho.waituntil.main {
}