Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Commandline

Description

mvn clean

cleans up build artifacts

mvn compile

compiles the projects

mvn package

creates the jar files in the target/ subdirectories

mvn install

installs the jar files in your local repository

mvn -Prelease package

generates the javadoc/source jars as well

You can just run the install target, as Maven will build the previous stages automatically.

...