SlideShare a Scribd company logo
Apache Maven 
What is it? 
----------- 
Maven is a software project management and comprehension tool. Based on 
the concept of a Project Object Model (POM), Maven can manage a project's 
build, reporting and documentation from a central piece of information. 
Documentation 
------------- 
The most up-to-date documentation can be found at http://maven.apache.org/. 
Release Notes 
------------- 
The full list of changes can be found at http://maven.apache.org/release-notes. 
html. 
System Requirements 
------------------- 
JDK: 
1.6 or above (this is to execute Maven - it still allows you to build 
against 1.3 
and prior JDK's). 
Memory: 
No minimum requirement. 
Disk: 
Approximately 10MB is required for the Maven installation itself. In 
addition to 
that, additional disk space will be used for your local Maven repository. 
The size 
of your local repository will vary depending on usage but expect at least 
500MB. 
Operating System: 
No minimum requirement. Start up scripts are included as shell scripts and 
Windows 
batch files. 
Installing Maven 
---------------- 
1) Unpack the archive where you would like to store the binaries, eg: 
Unix-based operating systems (Linux, Solaris and Mac OS X) 
tar zxvf apache-maven-3.x.y.tar.gz 
Windows 
unzip apache-maven-3.x.y.zip 
2) A directory called "apache-maven-3.x.y" will be created. 
3) Add the bin directory to your PATH, eg: 
Unix-based operating systems (Linux, Solaris and Mac OS X) 
export PATH=/usr/local/apache-maven-3.x.y/bin:$PATH 
Windows 
set PATH="c:program filesapache-maven-3.x.ybin";%PATH% 
4) Make sure JAVA_HOME is set to the location of your JDK 
5) Run "mvn --version" to verify that it is correctly installed.
For complete documentation, see 
http://maven.apache.org/download.html#Installation 
Licensing 
--------- 
Please see the file called LICENSE. 
Maven URLS 
---------- 
Home Page: http://maven.apache.org/ 
Downloads: http://maven.apache.org/download.html 
Release Notes: http://maven.apache.org/release-notes.html 
Mailing Lists: http://maven.apache.org/mail-lists.html 
Source Code: https://git-wip-us.apache.org/repos/asf/maven.git/apache-maven 
Issue Tracking: http://jira.codehaus.org/browse/MNG 
Wiki: https://cwiki.apache.org/confluence/display/MAVEN/ 
Available Plugins: http://maven.apache.org/plugins/index.html

More Related Content

PPT
Apache
PDF
Installation of LAMP Server with Ubuntu 14.10 Server Edition
PDF
Apache2 BootCamp : Getting Started With Apache
PPTX
Web server installation_configuration_apache
PPT
Diva23
PPTX
Cassandra installation
PPTX
Installing apache sqoop
PPTX
Installing hive on ubuntu 16
Apache
Installation of LAMP Server with Ubuntu 14.10 Server Edition
Apache2 BootCamp : Getting Started With Apache
Web server installation_configuration_apache
Diva23
Cassandra installation
Installing apache sqoop
Installing hive on ubuntu 16

What's hot (20)

PDF
Enable oracle database vault
ODP
Technical Aspects of SLiMS
PDF
Pluggable database 3
PPTX
Installing hadoop on ubuntu 16
PPTX
How to Install LAMP in Ubuntu 14.04
PDF
Nelf2012
PPTX
PPTX
Lamp introduction in Fedora
DOCX
Upgrade EBS DB from 11g to 12c.
PPT
Making the secure communication between Server and Client with https protocol
PDF
Ansible automation tool with modules
PPT
Apache Web Server Setup 2
PDF
Oracle to MySQL DatabaseLink
PPT
Apache Presentation
PPT
Apache web server installation/configuration, Virtual Hosting
PDF
Introduction to FreeNAS development by John Hixson
DOC
EMC Networker installation Document
PDF
Apache Tutorial
PPTX
Geek Sync I Working with SQL Server for Linux Cross-Platform
PPTX
How to add system calls to OS/161
Enable oracle database vault
Technical Aspects of SLiMS
Pluggable database 3
Installing hadoop on ubuntu 16
How to Install LAMP in Ubuntu 14.04
Nelf2012
Lamp introduction in Fedora
Upgrade EBS DB from 11g to 12c.
Making the secure communication between Server and Client with https protocol
Ansible automation tool with modules
Apache Web Server Setup 2
Oracle to MySQL DatabaseLink
Apache Presentation
Apache web server installation/configuration, Virtual Hosting
Introduction to FreeNAS development by John Hixson
EMC Networker installation Document
Apache Tutorial
Geek Sync I Working with SQL Server for Linux Cross-Platform
How to add system calls to OS/161
Ad

Similar to Readme (20)

PPTX
PHP Dependency Management with Composer
PPTX
Extracting twitter data using apache flume
PDF
Installing d space on windows
PDF
Apache windows
PPT
Linux containers and docker
PPT
Professional deployment
DOCX
Content server installation guide
PDF
Building Apache Hadoop from source on IBM Power Systems
PPTX
PDF
Piattaforma Web Linux completa dai sorgenti
PDF
Wamp & LAMP - Installation and Configuration
PPT
2 Linux Container and Docker
PPT
Develop with linux containers and docker
ODP
Appache.ppt
PPT
APACHE
PDF
Build server
PPT
Nuxeo5 - Continuous Integration
PHP Dependency Management with Composer
Extracting twitter data using apache flume
Installing d space on windows
Apache windows
Linux containers and docker
Professional deployment
Content server installation guide
Building Apache Hadoop from source on IBM Power Systems
Piattaforma Web Linux completa dai sorgenti
Wamp & LAMP - Installation and Configuration
2 Linux Container and Docker
Develop with linux containers and docker
Appache.ppt
APACHE
Build server
Nuxeo5 - Continuous Integration
Ad

Readme

  • 1. Apache Maven What is it? ----------- Maven is a software project management and comprehension tool. Based on the concept of a Project Object Model (POM), Maven can manage a project's build, reporting and documentation from a central piece of information. Documentation ------------- The most up-to-date documentation can be found at http://maven.apache.org/. Release Notes ------------- The full list of changes can be found at http://maven.apache.org/release-notes. html. System Requirements ------------------- JDK: 1.6 or above (this is to execute Maven - it still allows you to build against 1.3 and prior JDK's). Memory: No minimum requirement. Disk: Approximately 10MB is required for the Maven installation itself. In addition to that, additional disk space will be used for your local Maven repository. The size of your local repository will vary depending on usage but expect at least 500MB. Operating System: No minimum requirement. Start up scripts are included as shell scripts and Windows batch files. Installing Maven ---------------- 1) Unpack the archive where you would like to store the binaries, eg: Unix-based operating systems (Linux, Solaris and Mac OS X) tar zxvf apache-maven-3.x.y.tar.gz Windows unzip apache-maven-3.x.y.zip 2) A directory called "apache-maven-3.x.y" will be created. 3) Add the bin directory to your PATH, eg: Unix-based operating systems (Linux, Solaris and Mac OS X) export PATH=/usr/local/apache-maven-3.x.y/bin:$PATH Windows set PATH="c:program filesapache-maven-3.x.ybin";%PATH% 4) Make sure JAVA_HOME is set to the location of your JDK 5) Run "mvn --version" to verify that it is correctly installed.
  • 2. For complete documentation, see http://maven.apache.org/download.html#Installation Licensing --------- Please see the file called LICENSE. Maven URLS ---------- Home Page: http://maven.apache.org/ Downloads: http://maven.apache.org/download.html Release Notes: http://maven.apache.org/release-notes.html Mailing Lists: http://maven.apache.org/mail-lists.html Source Code: https://git-wip-us.apache.org/repos/asf/maven.git/apache-maven Issue Tracking: http://jira.codehaus.org/browse/MNG Wiki: https://cwiki.apache.org/confluence/display/MAVEN/ Available Plugins: http://maven.apache.org/plugins/index.html