Versions Compared

Key

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

...

Eclipse Indigo (3.7)

If you 're at the Magnolia premisescan access Magnolia's internal network, a preinstalled eclipse for Mac OS X(Cocoa 64) called eclipse-indigo-macosx-cocoa-64.zip can be found at our file server under Product Development/Eclipse

...

Again, no worries (smile) To get rid of the error and proceed with project build you'll need to add the following snippet to the pluginManagement/plugins section of your project's pom.xml

Code Block
xml
xml

<plugin>
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself. -->
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
  <lifecycleMappingMetadata>
    <pluginExecutions>
      <pluginExecution>
        <pluginExecutionFilter>
          <groupId>info.magnolia</groupId>
          <artifactId>maven-setproperty-plugin</artifactId>
          <versionRange>[1.1.1,)</versionRange>
          <goals>
            <goal>set-property</goal>
          </goals>
        </pluginExecutionFilter>
        <action>
          <execute></execute>
        </action>
      </pluginExecution>
    </pluginExecutions>
  </lifecycleMappingMetadata>
</configuration>
</plugin>

Wiki MarkupShould your module inherit from *magnolia-parent-pom version 20*, then m2e should not cause any problem as the above fix was applied globally to our parent pom (see [http://jira.magnolia-cms.com/browse/BUILD-72]). This pom fix might not be needed in the future, as soon as this \[https://bugs.eclipse.org/bugs/show_bug.cgi?id=350414\| m2e issue\] will be accepted and solved.

For some background info and the ratio behind this new behaviour in m2e, please read:

...

Eclipse Helios (3.6)

If you 're at the Magnolia premisescan access Magnolia's internal network, a preinstalled eclipse for Mac OS X(Cocoa 64) called eclipse-helios-macosx-cocoa-64.zip can be found at our file server under Product Development/Eclipse

...