-
Previously one could specify an argument line to run an Eclipse application: Now you must use a list: This is arguably more well structured, but also very verbose. I.e., this versus this Okay, fine, not so readable, harder to edit, but now I wonder how can I add to the arguments via a property like I could previously? Previously I could specify this property this: https://stackoverflow.com/questions/24170098/maven-property-referencing-a-list I.e., I see no way to pass additional arguments (and/or even optional arguments) using this list of |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Even surefire retains the ability to specify argline which could be used to specify additional system properties and of course the vm args
But now there is only this for the JVM args also making that more difficult (impossible?) to specialize via property expansion: Tycho surefire still works the "old" way: https://tycho.eclipseprojects.io/doc/latest/tycho-surefire-plugin/test-mojo.html This makes it seem more odd and kind of questionable... |
Beta Was this translation helpful? Give feedback.
-
The argLine and appArgLine options have been restored for Tycho 3.0.2 and for 4.x. |
Beta Was this translation helpful? Give feedback.
Even surefire retains the ability to specify argline which could be used to specify additional system properties and of course the vm args
But now there is only this for the JVM args also making that more difficult (impossible?) to specialize via property expansion:
https://tycho.eclipseprojects.io/doc/3.0.0/tycho-extras/tycho-eclipserun-plugin/eclipse-run-mojo.html#jvmArgs
Tycho surefire still works the "old" way:
https://tycho.eclipseprojects.io/doc/latest/tycho-surefire-plugin/test-mojo.html
This makes it seem mo…