Versions Compared

Key

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

...

Installing Maven

Get Maven binary: http://maven.apache.org/download.htmlImage Removed

For Mac and Linux:

...

Code Block
export M2_HOME=/usr/local/maven
export PATH=${M2_HOME}/bin:${PATH}

For Windows: FIXME

Understanding POMs

POMs are top level build configuration files.

To debug POMs, read through the effective POM:

Code Block

$ mvn help:effective-pom

Dependencies

Running mvn in source root will download and setup dependency jars in ~/.m2/repository.

...