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)
Line 10: Line 10:
 
*** Note: Milestone builds will be available starting with 1.0M5
 
*** Note: Milestone builds will be available starting with 1.0M5
  
== Sample dependancy ==
+
== Sample pom.xml entires ==
  
 
<pre>
 
<pre>
<dependency>
+
 
   <groupId>org.eclipse.persistence</groupId>
+
<dependencies>
  <artifactId>eclipselink</artifactId>
+
   <dependency>
  <version>1.0-SNAPSHOT</version>
+
    <groupId>org.eclipse.persistence</groupId>
  <scope>compile</scope>
+
    <artifactId>eclipselink</artifactId>
</dependency>
+
    <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;amp;file=/technology/eclipselink/maven.repo</url>
 +
  </repository>   
 +
      ...
 +
</repositories>
 +
 
 
</pre>
 
</pre>

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