Questions tagged [exec-maven-plugin]

Use this tag for questions specifically related to the usage of the Exec Maven Plugin, which allows to execute arbitrary programs or other Java programs during a Maven build.

The plugin offers two goals: exec:exec and exec:java. The first one can be used to run arbitrary programs. The second to run other Java programs, however the latter does not spawn a new process.

More Info

229 questions
0
votes
1 answer

How to skip maven child module build

I have project like module1 module2 module3 submodule1 src main java resources child1 child2 module4 When I run mvn clean install on the project all top and submodules builds. But I want maven not to execute…
MAK Ripon
  • 1,065
  • 4
  • 14
  • 27
-1
votes
1 answer

Maven build failure classNotFoundException

It's my first time trying out maven and I can't understand why I keep getting classnotfoundexception every time I am trying to build. This is the error I am receiving: [INFO] Scanning for projects... [INFO] [INFO] ---------------------------<…
-1
votes
2 answers

Injecting version number to Source file path in [Files] section in InnoSetup file, passing it by commandline argument

I am building a setup file with InnoSetup 5.5.6 and I am also using maven to automatically build the installer. Maven is using exec-maven-plugin, so this method is eqvivalent to running iscc.exe on commandline. What I am basically trying to do is…
Chase
  • 106
  • 1
  • 9
1 2 3
15
16