> does anyone have a successfull setup (=pom.xml) that > specifies the > Hudson snapshot repository : > > https://builds.apache.org/hudson/job/Lucene-Solr-Maven-3.x/lastStableBuild/artifact/maven_artifacts > (or that for trunk) > > and entries for any solr snapshot artifacts which are then > found by > Maven in this repository?
This is what i use successfully: <repository> <id>trunk</id> <url> https://hudson.apache.org/hudson/job/Lucene-Solr-Maven-trunk/lastSuccessfulBuild/artifact/maven_artifacts/ </url> </repository> <dependency> <groupId>org.apache.solr</groupId> <artifactId>solr-core</artifactId> <version>4.0-SNAPSHOT</version> <scope>compile</scope> <type>jar</type> </dependency>