I am using netbeans to work on a project. I am using svn, so that I can commit to newer versions and revert to an older version in case I mess up. Now I want to create a jar file of this project but the build tab in the project properties does not display the packaging option, it only displays one option and that is of 'compile'.

If I create a new project (Java Application) it does show the packaging option and then I can easily create a jar file, but this maven project that I am working on does not work like this.

Please suggest me a way to create jar file out of my maven project.

Thanks,

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted
  1. Open cmd (if you are on Windows) or any shell (if you are on Linux)
  2. Navigate to your project directory (use cd command)
  3. Run mvn clean package there.

Your jar will be in <project dir>/target.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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