Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [eclipselink-users] Eclipselink Maven repository

I think the thread accidentally got off the list. The following POM ended up working both internally and for the original poster. Does it help?

<repositories>
...
<repository>
<id>EclipseLink Repo</id>
<url>http://download.eclipse.org/rt/eclipselink/maven.repo</url>
</repository>
...
</repositories>

and the dependencies like this:

<dependencies>
...
<dependency>
<groupId>org.eclipse.persistence</groupId>
<artifactId>javax.persistence</artifactId>
<version>2.0.3</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.eclipse.persistence</groupId>
<artifactId>org.eclipse.persistence.core</artifactId>
<version>2.1.1</version>
<scope>compile</scope>
</dependency>
...
<dependencies>


On 18/11/2011 9:54 AM, Sri Sankaran wrote:
Can you please tell me from where I can get the newly minted Eclipselink 2.3.1
into my Maven project?
There have been several posts in a _recent thread_
<http://dev.eclipse.org/mhonarc/lists/eclipselink-users/msg06748.html> on the
Eclipselink Maven repository being missing in action. There was no conclusion to
it. _Tom Ware asked_
<http://dev.eclipse.org/mhonarc/lists/eclipselink-users/msg06785.html> if
_http://download.eclipse.org/rt/eclipselink/maven.repo_ worked. I for one have
no success with it.
I am coming up empty with the recommendations at _EclipseLink/Maven_
<http://wiki.eclipse.org/EclipseLink/Maven> page as well.
Sri


_______________________________________________
eclipselink-users mailing list
eclipselink-users@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/eclipselink-users


Back to the top