On Dec 8, 2007 7:05 AM, Xavier Hanin <[EMAIL PROTECTED]> wrote: > Hi, > > As you have noticed I've prepared a maven 2 friendly distribution of Ivy. > Are you ok if we push it (once the release will be accepted) to the apache > maven 2 repository? If so, where is it on people.a.o?
I think I have the answer for the location: /www/people.apache.org/repo/m2-ibiblio-rsync-repository I've updated the m2 staging repository on my page with: - md5 and sha1 checksums, generated using openssl on people.apache.org - added maven-metadata.xml in org/apache/ivy/ivy/ + md5 and sha1, based on a model from wicket (actually published with maven 2) Then I've tested resolving a dependency on ivy using maven2 with this repository, and it worked with no problem. So I guess we are ready to publish 2.0.0-beta1 to the maven 2 repository too (if we get no -1 in the upcoming hours). Xavier PS: here is the pom used for the test: -------------------8<----------------------- <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi=" http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.apache.ivy</groupId> <artifactId>ivy-test</artifactId> <packaging>jar</packaging> <version>1.0-SNAPSHOT</version> <name>ivy-test</name> <url>http://maven.apache.org</url> <dependencies> <dependency> <groupId>org.apache.ivy</groupId> <artifactId>ivy</artifactId> <version>2.0.0-beta1</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> </dependencies> <repositories> <repository> <id>maven2-staging-ivy</id> <name>Staging Repository for Ivy</name> <url>http://people.apache.org/~xavier/m2-staging-repo/</url> <layout>default</layout> </repository> </repositories> </project> ---------------------------8<--------------------------