Print at Mar 15, 2010 8:52:06 AM

Posted by groef at Aug 10, 2008 2:12:52 PM
Re: Maven 2 - 1.2.0-beta-5
The issue still exist if I try and use the beta-5 version, but I have a work around by adding the nightly snapshot build as a LEGACY repository to my POM and then point to the version 2.1-SNAPSHOT, but for the JDO I had to be pointed to the 2.1 release version.

<dependency>
<groupId>jpox</groupId>
<artifactId>jpox-core</artifactId>
<!--version>1.2.0-beta-5</version-->
<version>1.2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>jpox</groupId>
<artifactId>jpox-rdbms</artifactId>
<!--version>1.2.0-beta-5</version-->
<version>1.2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>javax.jdo</groupId>
<artifactId>jdo2-api</artifactId>
<version>2.1</version>
</dependency>

Additional Repositories that I required:
https://maven-repository.dev.java.net/repository/, was for the javax.transaction api version 1.1

<repository>
<id>java.net</id>
<url>https://maven-repository.dev.java.net/repository/</url>
<layout>legacy</layout>
</repository>
<repository>
<snapshots>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
<checksumPolicy>fail</checksumPolicy>
</snapshots>
<id>jpoxNightly</id>
<name>JPOX Maven 1 Nightly Repository</name>
<url>http://www.jpox.org/downloads/maven-nightly/</url>
<layout>legacy</layout>
</repository>

----------------------------------------
-- Francois --