Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

...

The download URL's are for each required distribution is specfied in the root POM as such.

Code Block
xml
xml
borderStylesolidxml
<platformDriver>R-3.2-200606291905/eclipse-SDK-3.2</platformDriver>
<platformUrl>http://download.eclipse.org/eclipse/downloads/drops/${platformDriver}</platformUrl>
<emfUrl>http://download.eclipse.org/tools/emf/downloads/drops/2.2.0/R200606271057/emf-sdo-xsd-SDK-2.2.0.zip</emfUrl>
<jemUrl>http://download.eclipse.org/tools/ve/downloads/drops/R-1.2-200606280938/JEM-SDK-1.2.zip</jemUrl>
<gefUrl>http://download.eclipse.org/tools/gef/downloads/drops/R-3.2-200606270816/GEF-SDK-3.2.zip</gefUrl>
<wtpUrl>http://download.eclipse.org/webtools/downloads/drops/R-1.5.0-200606281455/wtp-sdk-R-1.5.0-200606281455.zip</wtpUrl>

These URLs are then used by the plugin configuration also in the root POM.

Code Block
xml
xml
borderStylesolidxml
<plugin>
  <groupId>org.apache.geronimo.devtools</groupId>
  <artifactId>maven-geronimodevtools-plugin</artifactId>
  <configuration>
    <platformUrl>${platformUrl}</platformUrl>
    <urls>
      <url>${emfUrl}</url>
      <url>${jemUrl}</url>
      <url>${gefUrl}</url>
      <url>${wtpUrl}</url>
    </urls>
    <eclipseHome>${settings.localRepository}/eclipse/eclipse/</eclipseHome>
  </configuration>
  <executions>
    <execution>
      <id>create-eclipse-image</id>
      <phase>validate</phase>
      <goals>
        <goal>download</goal>
      </goals>
    </execution>
  </executions>
</plugin>

...