Exec Maven Plugin to Command Line
- by mistercaste
I have an application developed in NetBeans/Maven that can be started via command line with:
mvn exec:exec "-Dexec.executable=C:\\Java\\jdk1.6.0_33\\bin\\java.exe" "-Dexec.args=-Dlog4j.properties=... -classpath %classpath com.xxx.MyLauncher" -Dexec.classpathScope=runtime -Dexec.workingdir=
Now I need to run the application through the standard…