Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

...

Establish a SSH connection to the Solaris machine or log in on the console. You should either log in as root or obtain root permissions after login via su or sudo command.

Step 1. Download Apache Maven

You can use wget to download the tar.gz file directly to your server:

Code Block
wget http://www.apache.org/dist//maven/binaries/apache-maven-3.0.3-bin.tar.gz

Image RemovedImage Added

Step 2. Extract the Distribution Archive

Use the following command to extract files from the obtained archive:

Code Block
gunzip -c apache-maven-3.0.3-bin.tar.gz |tar xvf -

Image RemovedImage Added

Step 3. Set Environmental Variables

Add the following lines to BASHRC file:

Code Block
export M2_HOME=/opt/apache-maven-3.0.3
export PATH=${M2_HOME}/bin:${PATH}

Image RemovedImage Added

Step 4. Check Installation

After installation check the version by command:

Code Block
mvn -version

Image RemovedImage Added

The system displays information on the Apache Maven version installed.

...