RE: Preparing to Repair Gradle's Malformed Module Main-Class Command Line

2019-10-16 Thread Plugins
sion .jar or .JAR. >> A Java program can’t tell the difference between the two invocations. >> For example, if the directory mydir contains a.jar and b.JAR, then the >> class path element mydir/* is expanded to A.jar:b.JAR, except that the >> order of JAR files is unspecifie

Re: Preparing to Repair Gradle's Malformed Module Main-Class Command Line

2019-10-16 Thread Alex Buckley
I was going to ask if setting `jvmArgs` in the `run` task is the right way to configure Gradle, but I see it's done here: https://guides.gradle.org/building-java-9-modules/#modify_the_code_run_code_task_to_use_modules Setting aside `-m`: How do you specify the traditional `java -jar myapp.jar

Preparing to Repair Gradle's Malformed Module Main-Class Command Line

2019-10-16 Thread Plugins
Hi all, Please review this issue [1]? It reports a defect in the Gradle build tool's current construction of malformed java command lines that are intended to execute a Main-Class of a JPMS module. At first I thought the bug reported there was in either the Dropwizard application framework I wa