A JBoss Project
Red Hat

How To:

Basic Maven Configuration

In the context of application development, Maven provides a standardized build system for projects. One of the main benefits of using Maven with your project is that it facilitates fetching dependencies from one or more repositories. This article serves as an introduction to using Maven with the IDE and contains instructions for the following tasks:

Root Maven projects can serve as aggregators for multiple Maven modules, also known as sub-projects. For each module that is part of a maven project, a <module> entry is added to the project’s pom.xml file. A pom.xml that contains <module> entries is often referred to as an aggregator pom.

When modules are included into a project it is possible to execute Maven goals across all of the modules by a single command issued from the parent project directory.

Note that the provided instructions pertain to the creation of a parent+module project structure. If you prefer to create just a simple project, simply start with an archetype or don’t use the pom packaging in step 2.a.

1. Create a New Maven Project

Use the following instructions to create the parent project of a multi-module Maven project. The instructions provided ensure that the packaging option is set to pom, which is a requirement for multi-module Maven projects. Alternately, to create a standalone Maven project instead, set the packaging option to an option other than pom.

  1. Create a new project:

    1. In the workspace, navigate to File  New  Other.

    2. Type maven in the Filter field and select Maven Project.

    3. Click Next to continue.

  2. Enter the initial project details:

    1. Check the Create a simple project (skip archetype selection) check box. If this check box is selected, the Select an Archetype step of the wizard is skipped and the project type is set to pom, which is required to create a Maven Module based on this Maven project. Alternately, to create a standalone project, uncheck the Create a simple project (skip archetype selection) check box and follow the instructions in the wizard.

    2. Ensure that the Use default Workspace location check box is not checked and specify a non-default location for your workspace files using the Browse button. Using a non-default workspace location is recommended because this allows other tools to access the workspace location easily.

    3. The following optional steps are available for further configuration, if required:

      1. (Optional) Check the Add project(s) to working set check box to add the newly created projects to a working set.

      2. (Optional) Click Advanced to view additional optional advanced configuration for the new Maven project, such as:

        1. Resolve Workspace projects: dependencies opened as workspace projects will be resolved without having to install them to your local Maven repository first. This way, any changes made to one of these dependencies will have an immediate effect on other projects consuming it (compilation, refactoring, etc.). When Resolve Workspace projects is disabled, dependencies existing in the workspace must be installed to your local Maven repository after any change (by running mvn install), in order to see effects in projects consuming them.

        2. Profiles: select a set of Maven profiles to activate or deactivate in the workspace. Profiles are defined in the project pom.xml, or inherited from a parent pom.xml, or defined in the relevant settings.xml.

        3. Name templates: allows you to disambiguate projects names in the workspace by prepending or appending the group ID or SCM branch names to the default artifact ID.

          Create a New Maven Project
          Figure 1. Create a New Maven Project
    4. When the configuration is complete, click Next to continue.

  3. Configure the project details:

    1. Enter the desired group ID, which is similar to an organization namespace (for example, com.company.businessunit.project), in the Group Id field.

    2. Enter the desired artifact ID value, which is the name for your project, in the Artifact Id field. This value must not include any spaces and the only special characters allowed are periods ('.'), underscores ('_'), and dashes ('-').

    3. Set the Version field’s value to 0.0.1-SNAPSHOT or a similar value. For details about the appropriate version build numbers, see Project Versions

    4. Set the value of the Packaging field to pom.

    5. (Optional) Add a name for your project in the Name field.

    6. (Optional) Add a description for your project in the Description field.

      Configure Project Details
      Figure 2. Configure Project Details
    7. Click Finish to conclude the new Maven project creation wizard.

Result: Your new Maven project is created and appears in the Project Explorer view.

2. Create a New Maven Module

Each Maven project with a packaging pom can include multiple Maven modules. Follow the instructions to create your first Maven module:

Prerequisites

  1. You must have an existing Maven project available with the packaging type pom. See Create a New Maven Project for instructions to create a new Maven project.

Creating a New Maven Module

  1. Create a new Maven module as follows:

    1. In the Project Explorer view, right-click the recently created pom project and select New  Project.

    2. From the wizard selection screen, expand Maven and select Maven Module.

    3. Click Next > to continue.

  2. Enter the initial module details:

    1. Ensure that the Create a simple project (skip archetype selection) check box is not checked. If this check box is selected, the Select an Archetype step of the wizard is skipped.

    2. Enter the desired module name in the Module Name field. This value corresponds to the Maven project’s Project ID.

    3. Use the Browse button to locate the desired parent project and select it.

    4. The following optional steps are available for further configuration, if required:

      1. (Optional) Check the Add project(s) to working set check box to add the newly created projects to a working set.

      2. (Optional) Click Advanced to view additional optional advanced configuration for the new Maven project, such as:

        1. Resolve Workspace projects: dependencies opened as workspace projects will be resolved without having to install them to your local Maven repository first. This way, any changes made to one of these dependencies will have an immediate effect on other projects consuming it (compilation, refactoring, etc.). When Resolve Workspace projects is disabled, dependencies existing in the workspace must be installed to your local Maven repository after any change (by running mvn install), in order to see effects in projects consuming them.

        2. Profiles: select a set of Maven profiles to activate or deactivate in the workspace. Profiles are defined in the project pom.xml, or inherited from a parent pom.xml, or defined in the relevant settings.xml.

        3. Name templates: allows you to disambiguate projects names in the workspace by prepending or appending the group ID or SCM branch names to the default artifact ID.

          Set the Module Name and Parent
          Figure 3. Set the Module Name and Parent
    5. When the configuration is complete, click Next to continue.

  3. Enter the module archetype information:

    1. Ensure that the Show the last version of Archetype only check box is checked. This ensures that only the latest version of each archetype displays.

    2. Select an archetype based on the purpose of the project you are creating. Use the keyword maven-archetype-quickstart in the Filter field to locate a sample Maven project archetype.

      Select a Module Archetype
      Figure 4. Select a Module Archetype
    3. Click Next to continue.

  4. Enter the module details:

    1. Add the same group ID value that was used for the Maven project to the Group Id field.

    2. Add the desired version number in the Version field. For details about the appropriate version build numbers, see Project Versions

    3. The Artefact Id and Package fields are automatically populated based on the parent project details.

      Configure the Module Archetype Parameters
      Figure 5. Configure the Module Archetype Parameters
    4. Click Finish to conclude setting up the Maven module.

  5. (Optional) To change the settings for the created Maven module, expand the module name in the Project Explorer view and double click pom.xml from the expanded list. An Overview tab appears and all settings can be changed from this tab.

    Change the Module Settings from the Overview View
    Figure 6. Change the Module Settings from the Overview View

    Result: Your new Maven module is created and appears in the Project Explorer view. Additionally, a hierarchical view of the nested projects is now available in the Project Explorer view as well (see Nested/Hierarchical view of projects).

3. Add Maven Support to an Existing Non-Maven Project

The previous tasks contain instructions to create a new Maven project and Maven module. However, for an existing application that was not created with Maven support, use the following instructions to add Maven support to the non-Maven project:

Adding Maven Support to an Existing Non-Maven Project

  1. Right-click the project name in the Project Explorer view.

  2. From the displayed options, click Configure.

  3. From the displayed sub-menu, click Convert to Maven Project.

  4. Configure details for the new pom file:

    1. The basic fields for the new pom file are prepopulated based on the project details. If required, edit the existing values.

    2. (Optional) Add a name for the new project in the Name field.

    3. (Optional) Add a brief description for the project in the Description field.

      Create a New Pom Descriptor
      Figure 7. Create a New Pom Descriptor
    4. Click Finish to finalize the pom information.

  5. If the project references java dependencies, a wizard appears displaying all these dependencies and a green check mark when each dependency is identified. Learn more about dependency identification in the Did You Know section.

  6. Check the Delete original references from project check box to avoid retaining duplicate or stale dependencies in your project.

    Identify Maven Dependencies
    Figure 8. Identify Maven Dependencies
  7. Click Finish when all dependencies are converted.

Result: The existing project is now configured for Maven support.

Did You Know?

  • The wizard used to convert a non-Maven project to a Maven project attempts to identify all the project’s classpath entries and their equivalent Maven dependencies. From the list of identified dependencies, users can select which ones will be added to the generated Maven pom.xml file. When identifying dependencies, one of several strategies may be used:

    • Checking if the jar contains the relevant maven metadata.

    • Identify the dependency using the Nexus indexer.

    • Identify the dependency using the JBoss Nexus instance REST API (if we are online) via a SHA1 search.

    • Identify the dependency using the search.maven.org REST API (if we are online) via a SHA1 search.

  • All unchecked dependencies will be ignored and are not added to the generated pom.xml. However some of these can be added as transitive dependencies to your project. For instance, if you add jsp-api but remove servlet-api, the latter appears in the project classpath, as it is a dependency of jsp-api.

  • You can double-click on a dependency from a list (or click the Edit button) to edit its Maven coordinates or scope. Selecting several dependencies (ctrl+click) and clicking the Edit button allows batch editing of their scope.

Troubleshooting

  1. Error Message: Unidentifiable Dependency in the Maven Dependency column.

    Unidentifiable Dependency
    Figure 9. Unidentifiable Dependency
    1. Issue: Either:

      1. the jar file is corrupted/invalid.

      2. the jar file is valid but does not contain any metadata used for identification.

    2. Resolution:

      1. Make sure that jar exists as a Maven artifact. If needed, you can install it to your local repository and then Click on the Identify dependencies button.

      2. Double click on the dependency, or click on the Edit…​ button and set the expected maven coordinates.

  2. Error Message: Some selected dependencies can not be resolved. Click here to configure repositories in your settings.xml.

    Dependencies Can Not Be Resolved Error
    Figure 10. Dependencies Can Not Be Resolved Error
    1. Issue:: This error displays when a dependency can be identified (that is, whether it contains the pom properties or other metadata) but the dependency is not available in any repository defined in your settings.xml.

    2. Resolution: Click the here link in the error message and compare the old and new settings for the dependency and add a new and correct repository. Users may choose to use one of the predefined repositories from Red Hat.

back to top