You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-commits@lucene.apache.org by Apache Wiki <wi...@apache.org> on 2012/03/04 03:01:31 UTC

[Lucene-java Wiki] Update of "HowNightlyBuildsAreMade" by SteveRowe

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Lucene-java Wiki" for change notification.

The "HowNightlyBuildsAreMade" page has been changed by SteveRowe:
http://wiki.apache.org/lucene-java/HowNightlyBuildsAreMade?action=diff&rev1=22&rev2=23

   * Trunk (4.X-SNAPSHOT): [[https://builds.apache.org/job/Lucene-trunk/lastSuccessfulBuild/artifact/artifacts/|Download]] - [[http://builds.apache.org/job/Lucene-trunk/|Status]] - [[http://builds.apache.org/job/Lucene-trunk/lastSuccessfulBuild/clover/|Clover Test Coverage]] - [[http://builds.apache.org/job/Lucene-trunk/javadoc/|Javadocs]]
   * Branch 3x (3.X-SNAPSHOT): [[https://builds.apache.org/job/Lucene-3.x/lastSuccessfulBuild/artifact/artifacts/|Download]] - [[https://builds.apache.org/job/Lucene-3.x/|Status]] - [[https://builds.apache.org/job/Lucene-3.x/lastSuccessfulBuild/clover/|Clover Test Coverage]] - [[https://builds.apache.org/job/Lucene-3.x/javadoc/|Javadocs]]
  
- Maven artifacts are published by Jenkins for both Lucene and Solr by dedicated nightly Maven builds:
+ Dedicated nightly Maven builds are run on Jenkins for both Solr and Lucene:
  
+  * Trunk (4.X-SNAPSHOT): [[http://builds.apache.org/job/Lucene-Solr-Maven-trunk/|Status]]
+  * Branch 3x (3.X-SNAPSHOT): [[http://builds.apache.org/job/Lucene-Solr-Maven-3.x/|Status]]
-  * Trunk (4.X-SNAPSHOT): [[https://builds.apache.org/job/Lucene-Solr-Maven-trunk/lastSuccessfulBuild/artifact/maven_artifacts/|Download]] - [[http://builds.apache.org/job/Lucene-Solr-Maven-trunk/|Status]]<<BR>><<BR>>
-  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>
-  }}}
  
+ Snapshots are deployed from the above two builds to the Apache Snapshot repository. Add the following to your pom.xml to use these artifacts:
-  * Branch 3x (3.X-SNAPSHOT): [[https://builds.apache.org/job/Lucene-Solr-Maven-3.x/lastSuccessfulBuild/artifact/maven_artifacts/|Download]] - [[http://builds.apache.org/job/Lucene-Solr-Maven-3.x/|Status]]<<BR>><<BR>>
-  To use these snapshot builds in your pom, you may want to add the following to your pom.xml:
-  {{{
+ {{{
-  <repository>
+ <repository>
+   <id>apache.snapshots</id>
+   <name>Apache Snapshot Repository</name>
+   <url>http://repository.apache.org/snapshots</url>
+   <releases>
-    <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>
+     <enabled>false</enabled>
-    </snapshots>
+   </releases>
-  </repository>
+ </repository>
-  }}}
+ }}}
- 
  
  == Build Scripts ==