-
Book Overview & Buying
-
Table Of Contents
-
Feedback & Rating

Mastering Apache Maven 3
By :

Installing Maven on any platform is a straightforward task. At the time of writing this book, the latest version is 3.2.3, which is available to download from http://maven.apache.org/download.cgi. This version requires JDK 1.6.0 or above. You should keep a note of the Java requirement for version 3.2.3 if you are planning to upgrade from version 3.0.0 family or 3.1.0 family. Prior to Maven 3.2.1, the only requirement was JDK 1.5.0.
Apache Maven is an extremely lightweight distribution. It does not have any hard requirements in terms of memory, disk space, or CPU. Maven is built on top of Java and will work on any operating system that runs a Java Virtual Machine (JVM).
Installing Maven on Ubuntu just needs a single-line command. Proceed with the following steps:
apt-get
command in the command prompt; you need to have the sudo
privileges to execute this:$ sudo apt-get install maven
$ mvn -version
$ mvn -version Apache Maven 3.2.3 Maven home: /usr/share/maven Java version: 1.7.0_60, vendor: Oracle Corporation Java home: /usr/lib/jvm/java-7-oracle/jre Default locale: en_US, platform encoding: UTF-8 OS name: "linux", version: "3.13.0-24-generic", arch: "amd64", family: "unix"
/usr/share/maven
directory. To check the directory structure behind the Maven installation directory, use the following command:$ ls /usr/share/maven bin boot conf lib man
/etc/maven
directory using the following command:$ ls /etc/maven m2.conf settings.xml
If you don't want to work with the apt-get
command, there is another way of installing Maven under any Unix-based operating system. We will discuss this in the next section. Since Mac OS X has a kernel built on top of the Unix kernel, installing Maven on Mac OS X would be the same as installing it on any Unix-based operating system.
Most of the OS X distributions prior to OS X Mavericks had Apache Maven preinstalled. To verify that you've got Maven installed in your system, try out the following command:
$ mvn –version
If it does not result in a version, this means you do not have Apache Maven installed.
The following steps will guide you through the Maven installation process:
/usr/share/java
directory. You need to have the sudo
privileges to execute the following command:$ sudo unzip apache-maven-3.2.3-bin.zip -d /usr/share/java/
$ sudo unlink /usr/share/maven
sudo
privileges to execute the following command:$ sudo ln -s /usr/share/java/apache-maven-3.2.3 /usr/share/maven
$ mvn -version Apache Maven 3.2.3 (33f8c3e1027c3ddde99d3cdebad2656a31e8fdf4; 2014-08-12T02:28:10+05:30) Maven home: /usr/share/maven Java version: 1.6.0_65, vendor: Apple Inc. Java home: /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home Default locale: en_US, platform encoding: MacRoman OS name: "mac os x", version: "10.8.5", arch: "x86_64", family: "mac"
Maven can also be installed on Mac OS X with Homebrew. Check out the video at this link, https://www.youtube.com/watch?v=xTzLGcqUf8k, which explains the installation process in detail.
First, we need to download the latest version of Maven. The Apache Maven 3.2.3 ZIP distribution can be downloaded from http://maven.apache.org/download.cgi. Next, perform the following steps:
C:\Program Files\ASF
folder.M2_HOME
environment variable and point it to C:\Program Files\ASF\apache-maven-3.2.3
.mvn –version
To learn how to set the environment variables on Microsoft Windows, you can refer http://www.computerhope.com/issues/ch000549.htm.
Change the font size
Change margin width
Change background colour