2008-04-16 00:57:15 -04:00
|
|
|
|
|
|
|
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
|
|
|
|
-------------
|
|
|
|
|
2016-05-28 07:28:23 -04:00
|
|
|
The most up-to-date documentation can be found at https://maven.apache.org/.
|
2008-04-16 00:57:15 -04:00
|
|
|
|
|
|
|
Release Notes
|
|
|
|
-------------
|
|
|
|
|
2016-05-28 07:28:23 -04:00
|
|
|
The full list of changes can be found at https://maven.apache.org/docs/history.html.
|
2008-04-16 00:57:15 -04:00
|
|
|
|
|
|
|
System Requirements
|
|
|
|
-------------------
|
|
|
|
|
|
|
|
JDK:
|
2021-03-13 15:21:20 -05:00
|
|
|
8 or above (this is to execute Maven - it still allows you to build against 1.3
|
2008-04-16 00:57:15 -04:00
|
|
|
and prior JDK's).
|
|
|
|
Memory:
|
|
|
|
No minimum requirement.
|
|
|
|
Disk:
|
2014-03-30 05:28:13 -04:00
|
|
|
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.
|
2008-04-16 00:57:15 -04:00
|
|
|
Operating System:
|
2015-02-28 09:50:58 -05:00
|
|
|
Windows:
|
|
|
|
Windows 2000 or above.
|
|
|
|
Unix based systems (Linux, Solaris and Mac OS X) and others:
|
|
|
|
No minimum requirement.
|
2008-04-16 00:57:15 -04:00
|
|
|
|
|
|
|
Installing Maven
|
|
|
|
----------------
|
|
|
|
|
2017-01-22 23:56:27 -05:00
|
|
|
1) Unpack the archive where you would like to store the binaries, e.g.:
|
2008-04-16 00:57:15 -04:00
|
|
|
|
2014-03-30 05:28:13 -04:00
|
|
|
Unix-based operating systems (Linux, Solaris and Mac OS X)
|
2021-03-13 15:21:20 -05:00
|
|
|
tar zxvf apache-maven-4.x.y.tar.gz
|
2014-03-30 05:28:13 -04:00
|
|
|
Windows
|
2021-03-13 15:21:20 -05:00
|
|
|
unzip apache-maven-4.x.y.zip
|
2008-04-16 00:57:15 -04:00
|
|
|
|
2021-03-13 15:21:20 -05:00
|
|
|
2) A directory called "apache-maven-4.x.y" will be created.
|
2008-04-16 00:57:15 -04:00
|
|
|
|
2017-01-22 23:56:27 -05:00
|
|
|
3) Add the bin directory to your PATH, e.g.:
|
2008-04-16 00:57:15 -04:00
|
|
|
|
2014-03-30 05:28:13 -04:00
|
|
|
Unix-based operating systems (Linux, Solaris and Mac OS X)
|
2021-03-13 15:21:20 -05:00
|
|
|
export PATH=/usr/local/apache-maven-4.x.y/bin:$PATH
|
2014-03-30 05:28:13 -04:00
|
|
|
Windows
|
2021-03-13 15:21:20 -05:00
|
|
|
set PATH="c:\program files\apache-maven-4.x.y\bin";%PATH%
|
2008-04-16 00:57:15 -04:00
|
|
|
|
|
|
|
4) Make sure JAVA_HOME is set to the location of your JDK
|
|
|
|
|
|
|
|
5) Run "mvn --version" to verify that it is correctly installed.
|
|
|
|
|
2016-05-28 07:28:23 -04:00
|
|
|
For complete documentation, see https://maven.apache.org/download.html#Installation
|
2008-04-16 00:57:15 -04:00
|
|
|
|
|
|
|
Licensing
|
|
|
|
---------
|
|
|
|
|
2014-03-30 05:28:13 -04:00
|
|
|
Please see the file called LICENSE.
|
2008-04-16 00:57:15 -04:00
|
|
|
|
2020-08-07 08:28:49 -04:00
|
|
|
Maven URLs
|
2008-04-16 00:57:15 -04:00
|
|
|
----------
|
|
|
|
|
2015-12-11 13:52:38 -05:00
|
|
|
Home Page: https://maven.apache.org/
|
|
|
|
Downloads: https://maven.apache.org/download.html
|
|
|
|
Release Notes: https://maven.apache.org/docs/history.html
|
2019-01-13 04:36:47 -05:00
|
|
|
Mailing Lists: https://maven.apache.org/mailing-lists.html
|
2018-03-19 18:24:03 -04:00
|
|
|
Source Code: https://gitbox.apache.org/repos/asf/maven.git
|
2015-12-11 13:52:38 -05:00
|
|
|
Issue Tracking: https://issues.apache.org/jira/browse/MNG
|
2012-12-16 15:13:57 -05:00
|
|
|
Wiki: https://cwiki.apache.org/confluence/display/MAVEN/
|
2018-03-19 18:24:03 -04:00
|
|
|
Available Plugins: https://maven.apache.org/plugins/
|