Nightly Builds
The Solr nightly builds are run on Jenkins (the continuous integration server formerly known as Hudson).
Jenkins Nightly Builds
Trunk (4.x-SNAPSHOT): Download - Status - Clover Test Coverage - Javadocs
Branch 3x (3.x-SNAPSHOT): Download - Status - Clover Test Coverage - Javadocs
Maven artifacts are published by Jenkins for both Solr and Lucene by dedicated nightly Maven builds:
Trunk (4.x-SNAPSHOT): Download - Status
To use these snapshot builds in your pom, you may want to add the following to your pom.xml:<repository> <id>lucene-solr-jenkins-trunk</id> <name>Lucene/Solr Jenkins trunk</name> <url>https://builds.apache.org/job/Lucene-Solr-Maven-trunk/lastSuccessfulBuild/artifact/maven_artifacts</url> <layout>default</layout> <snapshots> <enabled>true</enabled> </snapshots> </repository>Branch 3x (3.x-SNAPSHOT): Download - Status
To use these snapshot builds in your pom, you may want to add the following to your pom.xml:<repository> <id>lucene-solr-jenkins-branch_3x</id> <name>Lucene/Solr Jenkins branch_3x</name> <url>https://builds.apache.org/job/Lucene-Solr-Maven-3.x/lastSuccessfulBuild/artifact/maven_artifacts</url> <layout>default</layout> <snapshots> <enabled>true</enabled> </snapshots> </repository>
Build Scripts
The scripts run by Jenkins for Solr and Lucene (both the nightly builds and the more frequent test-only builds) are here: