Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Check Mylyn Extras and select JIRA integration

Setup Project

Warning

If the project can't build because of the following message (printed in Maven Console)

Code Block

[WARN] Rule 0: org.apache.maven.plugin.enforcer.RequireMavenVersion failed with message: Detected Maven Version: 2.1-SNAPSHOT is not in the allowed range [2.0.9,2.0.9].

You must add the following to your main project pom:

Code Block

        <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-enforcer-plugin</artifactId>
          <version>1.0-alpha-3</version>
          <configuration>
            <skip>true</skip>
          </configuration>
        </plugin>

Create New Project

Select New / Other (not Project) 

...

Check if you got all the projects (the sub modules)

Disable maven version check if needed

edit project pom.xml

Code Block

        <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-enforcer-plugin</artifactId>
          <version>1.0-alpha-3</version>
          <configuration>
            <skip>true</skip>
          </configuration>
        </plugin>

Create a Server

If not yet done create a server.

...