Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "EclipseLink/Maven"

(double-escape ampersand, so it displays correctly for a copy'n'paste)
m (Fixed speling mistak)
Line 25: Line 25:
 
*** Note: Milestone builds will be available starting with 1.0M5
 
*** Note: Milestone builds will be available starting with 1.0M5
  
== Sample pom.xml entires ==
+
== Sample pom.xml entries ==
  
 
<pre>
 
<pre>

Revision as of 11:19, 26 January 2009

Location

  • http://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/rt/eclipselink/maven.repo
  • Group Id: org.eclipse.persistence
  • Artifact Ids:
    • eclipselink
      • The non OSGI EclipseLink jar
    • org.eclipse.peristence.core
      • OSGI-enabled EclipseLink core bundle
    • org.eclipse.peristence.jpa
      • OSGI-enabled EclipseLink JPA bundle
    • org.eclipse.peristence.moxy
      • OSGI-enabled EclipseLink MOXY bundle
    • org.eclipse.peristence.sdo
      • OSGI-enabled EclipseLink SDO bundle
    • org.eclipse.peristence.asm
      • OSGI-enabled EclipseLink ASM bundle
    • org.eclipse.peristence.antlr
      • OSGI-enabled EclipseLink ANTLR bundle
  • Versioning
    • Release: 1.0
    • Nightly/Snapshot: 1.0-SNAPSHOT
    • Milestone bulids: 1.0Mx (x is the number of the milestone)
      • e.g. 1.0M5
      • Note: Milestone builds will be available starting with 1.0M5

Sample pom.xml entries


<dependencies>
  <dependency>
    <groupId>org.eclipse.persistence</groupId>
    <artifactId>eclipselink</artifactId>
    <version>1.0-SNAPSHOT</version>
    <scope>compile</scope>
       ...
  </dependency>
<dependencies>
      ...
<repositories>
  <repository>
     <id>EclipseLink Repo</id>
     <url>http://www.eclipse.org/downloads/download.php?r=1&amp;nf=1&amp;file=/rt/eclipselink/maven.repo</url>
  </repository>    
      ...
</repositories> 

Back to the top