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"

(Sample pom.xml entries)
(Location)
Line 2: Line 2:
  
 
* http://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/rt/eclipselink/maven.repo
 
* http://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/rt/eclipselink/maven.repo
 +
 +
== Identifiers ==
 
* Group Id: org.eclipse.persistence
 
* Group Id: org.eclipse.persistence
* Artifact Ids:
+
 
** eclipselink
+
{|{{BMTableStyle}}
*** The non OSGI EclipseLink jar
+
|-{{BMTHStyle}}
** org.eclipse.persistence.core
+
! Artifact Id
*** OSGI-enabled EclipseLink core bundle
+
! Description
** org.eclipse.persistence.jpa
+
|-
*** OSGI-enabled EclipseLink JPA bundle
+
| eclipselink || The non OSGI EclipseLink jar
** org.eclipse.persistence.moxy
+
|-
***  OSGI-enabled EclipseLink MOXY bundle
+
| org.eclipse.persistence.core || OSGI-enabled EclipseLink core bundle
** org.eclipse.persistence.sdo
+
|-
***  OSGI-enabled EclipseLink SDO bundle
+
| org.eclipse.persistence.jpa || OSGI-enabled EclipseLink JPA bundle
** org.eclipse.persistence.asm
+
|-
***  OSGI-enabled EclipseLink ASM bundle
+
| org.eclipse.persistence.moxy || OSGI-enabled EclipseLink MOXY bundle
** org.eclipse.persistence.antlr
+
|-
*** OSGI-enabled EclipseLink ANTLR bundle
+
| org.eclipse.persistence.sdo || OSGI-enabled EclipseLink SDO bundle
* Versioning
+
|-
** Eclipse Galileo Release 1.1.2
+
| org.eclipse.persistence.asm || OSGI-enabled EclipseLink ASM bundle
** Under-Development-Release: 2.0.0
+
|-
*** Nightly/Snapshot: 2.0.0-SNAPSHOT
+
| org.eclipse.persistence.antlr || OSGI-enabled EclipseLink ANTLR bundle
*** Milestone bulids: 2.0.0-Mx (x is the number of the milestone)
+
|}
**** e.g. 2.0.0-M3
+
 
 +
== Versioning ==
 +
 
 +
* Eclipse Galileo Release 1.1.2
 +
* Under-Development-Release: 2.0.0
 +
** Nightly/Snapshot: 2.0.0-SNAPSHOT
 +
** Milestone bulids: 2.0.0-Mx (x is the number of the milestone)
 +
*** e.g. 2.0.0-M3
  
 
== Sample pom.xml entries ==
 
== Sample pom.xml entries ==

Revision as of 11:22, 24 June 2009

Location

Identifiers

  • Group Id: org.eclipse.persistence
Artifact Id Description
eclipselink The non OSGI EclipseLink jar
org.eclipse.persistence.core OSGI-enabled EclipseLink core bundle
org.eclipse.persistence.jpa OSGI-enabled EclipseLink JPA bundle
org.eclipse.persistence.moxy OSGI-enabled EclipseLink MOXY bundle
org.eclipse.persistence.sdo OSGI-enabled EclipseLink SDO bundle
org.eclipse.persistence.asm OSGI-enabled EclipseLink ASM bundle
org.eclipse.persistence.antlr OSGI-enabled EclipseLink ANTLR bundle

Versioning

  • Eclipse Galileo Release 1.1.2
  • Under-Development-Release: 2.0.0
    • Nightly/Snapshot: 2.0.0-SNAPSHOT
    • Milestone bulids: 2.0.0-Mx (x is the number of the milestone)
      • e.g. 2.0.0-M3

Sample pom.xml entries


<dependencies>
  <dependency>
    <groupId>org.eclipse.persistence</groupId>
    <artifactId>eclipselink</artifactId>
    <version>2.0.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