Skip to content

maven: Support for java maven projects

Ghost User requested to merge (removed):wip/albfan/maven-plugin into master

In maven there is no run target or similar. But you can run a main class (a class with a public static void main(String[] args) method) running:

mvn exec:java -Dexec.mainClass="my.package.MainClass"

So this plugins relays on run-opts in .buildconfig to run.

NOTE: run-opts is not updated on fly, so you need to add it to .buildconfig and reload the project

Captura_del_escritorio_de_29-05-18_08_09_02

Merge request reports