Versions Compared

Key

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

Development tips for the Maven tool.

Install Maven

Download the stable version of maven (1.0.2) from http://maven.apache.org/start/download.html.

...

Tip
titleSymlinking the Cache Directory

On Unix, Maven will download many external jars to your home directory. This can be a problem if you have limited disk space. The easiest way to get around this problem is creating a symlink from an area where you have more space.

Code Block
cd /scratch/
mkdir .maven
cd ~
ln -s /scratch/.maven

Now the location on the scratch disk will hold the Maven downloads rather than the home directory.

Tip

Development tips for the Maven tool.