Apache Maven Fedora Install
You are Welcome! The Tutorial shows you Step-by-Step How to Install Apache Maven 3.x on Fedora Desktop/Server.
Sure that the Apache Maven is also in the Fedora Yum Repositories, but if You want to be Sure of Install the Latest Maven Release then follow this Guidance.
The Apache Maven 3 SetUp Require a Working Java JDK 8+ Installation, so You will Find Link to Installing Oracle Java JDK on Fedora.
Furthermore, Maven calls its build scripts Project Object Model (POM) files. These POM files are in XML, and each Maven project or module will have an accompanying pom.xml file.
A Project Management Tool such as Maven provides a Superset of features found in a Build Tool.
Finally, Maven in Addition to providing Build capabilities, can also Run Reports, Generate a Website, and Managig Communication among members of a Working Team

-
Download Apache Maven 3.x Binaries
-
Open Terminal Window
(Press “Enter” to Execute Commands)
Or LogIn into Shell… -
Double-Click on Archive and Extract into /tmp.
Or from Shell:tar xvzf apache-maven*.tar.gz -C /tmp/
-
Verify that JDK 8+ is Installed on System
java -version
How to Install Oracle JDK 8+ on Fedora
-
Relocate Maven Binaries
sudo su
If Got “User is Not in Sudoers file” then see: How to Enable sudo
rm /home/[myUser]/Downloads/apache-maven*bin.tar.gz
sudo chown -R root:root /tmp/apache-maven*
mv /tmp/apache-maven* /opt/
exit
-
Add Maven Binaries to User Path
nano $HOME/.bashrc
Append:
export PATH=$PATH:/opt/apache-maven-[X.Y.X]/bin
Ctrl+X to Save and Exit from “nano” :)
Load New SetUp:
source $HOME/.bashrc
-
Test Maven Installation
mvn -v
-
Quick-Start with Maven Projects Management
Quick-Start with Eclipse Java Developers on Fedora
Tags: Apache, Apache Maven, apache maven Fedora, Apache Maven Fedora Install, Fedora, Fedora 16, Fedora 17, Fedora 18, Fedora 19, fedora 20, Fedora 21, Getting Started, Guide, How-to, Install, install maven Fedora, java build tools, maven Fedora, Maven Fedora Install, Maven Fedora Installation, Maven Install Fedora, Tutorial