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"

(New page: == Location == * http://www.eclipse.org/downloads/download.php?r=1&file=/technology/eclipselink/maven.repo * Group Id: org.eclipse.persistence * ArtifactId: eclipselink * Versioning *...)
 
(Sample dependancy)
Line 11: Line 11:
 
== Sample dependancy ==
 
== Sample dependancy ==
  
 +
<pre>
 
<dependency>
 
<dependency>
 
   <groupId>org.eclipse.persistence</groupId>
 
   <groupId>org.eclipse.persistence</groupId>
Line 17: Line 18:
 
   <scope>compile</scope>
 
   <scope>compile</scope>
 
</dependency>
 
</dependency>
 +
</pre>

Revision as of 12:44, 8 February 2008

Location

Sample dependancy

<dependency>
  <groupId>org.eclipse.persistence</groupId>
  <artifactId>eclipselink</artifactId>
  <version>1.0-SNAPSHOT</version>
  <scope>compile</scope>
</dependency>

Back to the top