Java Advanced Maven Hello World Project
I need a Hello World Project for Maven
- Install Maven on Windows (See the box below for Mac directions):
- Download the zip archive of latest version of Maven. Be sure to download the binary zip, not the source (“src”) zip!
- Extract it to someplace. I suggest
C:\Java\(used in the directions that follow), but anyplace you wish is fine. - I suggest you rename the folder from
apache-maven-versionto something simpler, such as justmaven. - Add this entry to the
PATHenvironment variable:C:\Java\maven\bin(use the folder name you picked). - Add this new environment variable:
M2_HOME=C:\Java\maven - Make sure you have the following environment variable set:
JAVA_HOME=C:\java(or whatever location you used for the JDK). - (As a reminder:
PATHis used by your system to locate executables such asmvnorjava;CLASSPATHis used by Java to locate packages and some other things;JAVA_HOMEis used by various programs (including Maven) to locate a JDK; andM2_HOME(previously known asMAVEN_HOME) is used bymvnto locate various configuration files. All of these may be used by other programs to locate files they need. While some programs are smart enough to guess to try default install locations when you don't set these variables, that won't work if you don't install in the default locations.)
Install Maven on Mac OS X
There are several ways do to this. One is to follow the standard install directions for a Linux-like system, found on the Maven website. The simplest way seems to be this:
- Install Homebrew if you don't already have that: visit brew.sh, copy the long line shown, and paste it in a terminal window. Doing this provides you with the
brewcommand to install things. - Run the command
brew install maven. - If your version of OS X doesn't include the
treecommand, you can install that using the commandbrew install tree.
- First, pick (or create) an empty directory to hold your Maven projects, and
cdinto it. Next, create a working “Hello, World” project named “hello” using the command (one long line):mvn archetype:generate -DgroupId=cop2805 -DartifactId=hello -DarchetypeArtifactId=maven-archetype-quickstart -DinteractiveMode=false
That might take a while the first time. When done, see what files were created by using thetree/F hellocommand (justtreeon Mac or Linux). Also take a look in your home directory; you should see a new subdirectory there named.m2. That's your personal Maven repo. - Next
cdinto your newhellodirectory. Take a look at the generated source code atsrc/main/java/cop2805/App.java, the generated unit test atsrc/main/java/cop2805/App.java, and the generatedpom.xmlfile. (When using Maven “for real”, you would edit the POM file and then edit or replace theApp.javaandAppTest.javafiles.) - If using Java 9, you will need to add some lines to your
pom.xmlfile. The reason is, the current version of Maven's compile plugin tries to generate code compatible with Java 5 (“javac -release 5 -source 5”), and Java 9 only supports Java 6 through 9. To fix, you need to add these four lines in your generatedpom.xml: <properties> <maven.compiler.source>1.9</maven.compiler.source> <maven.compiler.target>1.9</maven.compiler.target> </properties>
Those lines can go anywhere between the initial <project> tag and the final </project> tag, but not inside of any other tags. Just above the final </project> tag is fine. (Hopefully, a new version of that plugin will address that problem!) - Next, compile, test, package, and install your project. Maven will automatically put a copy into your local repo,
~/.m2/(“~” means your home directory.). This is done with the simple command:mvn install
Run thetree/F(ortree) command to see the new files created. (Also look in your home directory and usetreeon the.m2directory there.) Notice the JAR file; that is the resulting application. To run this Jar file, enter the command (without changing directories first):
java -cp target\hello-1.0-SNAPSHOT.jar cop2805.App - Finally, there are a couple of other Maven commands to play with:
- Try “
mvn site” to generate a website for your project. You can view the site in your web browser by opening the file “.../hello/target/site/”. - Convert your Maven project to an Eclipse-Maven project: “
mvn eclipse:eclipse”. If you import this project into Eclipse, it should just work. - Try to convert your “Hello, world” projects from the two IDEs into Maven projects. Notice how the layout of folders is now different from the default for your Eclipse and NetBeans IDEs.
- Try “
8 years ago 20
Answer(1)
Purchase the answer to view it
- maven-hello-world.zip
other Questions(10)
- art history homework ( good teacher )
- art history homework
- Discussion Post - Week 6 - Must do Posting to Today and respond to two others in 3 days.
- KATETUTOR ONLY Interview a Human Service Professional
- ACC 542 Week 6 Learning Team Assignment System Integrity and Validation Paper
- REL 134 The Islam Religion
- Elements of an Emergency Response Plan
- PSY 280 Week 3 Individual Assignment Middle Childhood and Adolescence Paper
- NUR 492 Week 1 Individual Assignment Leadership Questions
- article about econom ic 3