Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 30 Next »

Maven

If not already done so, obtain a local install of Maven for your development environment. For instructions on how to install and build maven please refer to the documentation posted at Requirements. If all goes well, you should be able to open a command prompt window, and at the command prompt, type 'mvn -version'.

mvn -version

You should see a message similar to below, displaying the version of Maven and Java.

Apache Maven 2.2.1 (r801777; 2009-08-06 14:16:01-0500)
Java version: 1.6.0_22
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.6.6" arch: "x86_64" Family: "mac"

Depending on you comfort level there may be more Maven configuration tricks that you may want to perform, such as customizing your settings.xml file. Look at the Additional References section below for more tutorials on Maven configurations that you may find helpful. 

Creating the Maven Project in Eclipse using archetypes

There are probably various ways to create a maven project but I found this one very simple at creating a basic maven structured project using archetypes based on a tutorial that was found at http://www.avajava.com/tutorials/categories/maven

Step 1. Create an external tool configuration

     1. Go to 'Run' -> 'External Tools' -> 'External Tools Configuration' (see below)

     

     2. Create a new program. Right-click on 'Program'  and select 'New'

     

     3. Create the archetype~create project according to the image below.

     Name: the name of your new archetype which we labeled 'mvn archetype~create'  

     Location: the location of the maven executable (/usr/bin/mvn)

     Working Directory:  the Eclipse workspace folder

     Arguments: the string_prompt argument means that a pop-up will display asking for the groupId and artifactId

     After you click on 'Apply' the newly created program will appear under the 'Program' list.

     

Step 2. Run the new Archetype you created

     1. Click on the new archetype you created 

     

Step 3. Fill out the prompts

     1. Enter the groupid such as 'edu.youruniversity' 

     

     2. Enter the artifactid, which is the name of your new portlet, such as 'TestPortlet'

     

Step 4. Importing the new project into Eclipse

The above steps created the project inside your Eclipse workspace folder but as you noticed you don't see it in your Package Explorer, so we need to add the project.

  1. Click 'File' -> 'New' -> 'Java Project'
  2. Enter the Name of your new project. As you can see, as you type in the name the Location will automatically point to the workspace project that you created above. Click 'Finish'

     

Step 5. Your New Project

After Step 4, you will see your newly created Maven project in the package explorer with the following maven structure, but you'll see errors because we are missing some dependencies.

     

To fix the dependency problem, create another External Tools Program 

  1. Go to 'Run' -> 'External Tools' -> 'External Tools Configuration'
  2. Then, Right-click on 'Program'  and select 'New'
  3. Create a new archetype called 'mvn eclipse~eclipse' with the following information:
    1. Name: mvn eclipse~eclipse
    2. Location: /usr/bin/mvn 
    3. Working Directory:  You'll need to enter the location of your project '${project_loc}'  
    4. Arguments: eclipse:eclipse  -DdownloadSources=true  -DdownloadJavadocs=true
  4. Click 'Apply' when you are finished. Now, in your Program list you'll have a new archetype called 'mvn eclipse~eclipse'

Now, resolve the dependencies by highlighting your 'TestPortlet' pom.xml file and then run your new mvn eclipse~eclipse archetype.

     

After, running the 'mvn eclipse~eclipse' archetype refresh your new project by right-clicking your project and select 'Refresh'. Your errors should now be gone.

Below you will see that after you executed the eclipse:eclipse command the Referenced Libraries were created. 

     

 Note: You don't need to create the archetypes again. Next time you want to create a new maven project you can use the existing archetypes you have created here.

Having problems with these instructions?

Please send us feedback at uportal-user@lists.ja-sig.org

  • No labels