Hi,
while cayenne itself is available at repo1.maven.org, some of its dependencies are not.
When following the instructions here:
http://cayenne.apache.org/doc30/cayenne-and-maven.html
I get errors about missing foundrylogic.vpp and resin-hessian libraries. The first one is available at http://objectstyle.org/maven2, the other at http://caucho.com/m2.
I had to add the following repositories to my pom to make it work:
Would be nice to add this to the doc, or make the libs available at central somehow.
Marc
This archive was generated by hypermail 2.0.0
: Tue Oct 12 2010 - 09:51:23 UTC
<repositories>
<repository>
<id>caucho</id>
<url>http://caucho.com/m2>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
</repository>
<repository>
<id>objectstyle</id>
<url>http://objectstyle.org/maven2>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
</repository>
</repositories>