Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be 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 dependancy)
(Location)
Line 1: Line 1:
 
== Location ==
 
== Location ==
  
* http://www.eclipse.org/downloads/download.php?r=1&file=/technology/eclipselink/maven.repo
+
* http://www.eclipse.org/downloads/download.php?r=1&file=/technology/eclipselink/maven.repo
 
* Group Id: org.eclipse.persistence
 
* Group Id: org.eclipse.persistence
 
* Artifact Id: eclipselink
 
* Artifact Id: eclipselink

Revision as of 15:55, 8 February 2008

Location

Sample pom.xml entires


<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;file=/technology/eclipselink/maven.repo</url>
  </repository>    
      ...
</repositories> 

Back to the top