I'm new to Maven and m2e. It frustrates me that I have to ask this question, but the sparse m2e documentation and Google are failing me.

How do get m2e to build a JAR? I understand that this should happen during the maven package phase, but m2e doesn't seem to do this as part of the build process and I can't find a way to explicitly execute the package phase in Eclipse (nor any other phases that aren't part of the default build).

Thanks.

link|improve this question

74% accept rate
feedback

1 Answer

up vote 5 down vote accepted

As long as you have your POM.xml file with the following parameters:

<modelVersion>[a model number eg 4.0.0]</modelVersion>
<groupId>[a group id eg com.myapp]</groupId>
<artifactId>[a unique artifact id within your packages eg myapp]</artifactId>
<version>[the version number eg 1.0-SNAPSHOT]</version>
<packaging>jar</packaging>
<name>[the name eg myapp]</name>

then you just need to run maven build with the goals clean install to create a jar file from your project. You can run maven build by right clinking on the project and going to run > maven build ...

The jar will be created in [project dir]/target

link|improve this answer
Fantastic! The key detail I was missing was the pointer the the Maven options under "Run As". I couldn't find a way to execute an arbitrary Maven phase to save my life... m2e desperately needs a decent tutorial... – HolySamosa Jan 12 at 17:40
@HolySamosa: remember that you can still go to the 'POM directory' and run your maven commands via command line (mvn clean install). It's sometimes easier than using the 'Run as' configurations. – proko Jan 12 at 19:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.