On 07/04/2008 at 3:28 PM, Karl Wettin wrote: > The snapshots seems to be built every day, but I seems to be producing > some jars of a non-trunk revision or branch. Perhaps 2.3.2?
I looked at MANIFEST.MF from lucene-core-2.3-SNAPSHOT.jar (the date for this file in the web page listing on the snapshot repository is today's date), and it has the following: Implementation-Version: 2.3-SNAPSHOT 614766 - hudson - 2008-01-24 08:3 6:15 (That "08:3 <newline> <space> 6:15" thing looks weird, but I don't think it's pertinent to the discussion at hand.) So it looks like the version is actually a nightly from 2008-01-24. The nightly/nightly.sh script generates and copies the shapshots <http://svn.apache.org/viewvc/lucene/java/nightly/nightly.sh?revision=629243&view=markup>: #Generate the Maven snapshot #Update the Version # when doing a release $ANT_HOME/bin/ant -Dversion=2.4-SNAPSHOT generate-maven-artifacts #copy the artifacts to the side so the cron job can publish them cp -R dist/maven/org/apache/lucene ../../maven-artifacts It appears from the above that 2.4-SNAPSHOT should be produced, and that the version identifier in nightly.sh was properly updated around the time of the 2.3.0 release. However, I don't see any 2.4-SNAPSHOT directories in the snapshot repo, and the metadata XML file for lucene-core <http://people.apache.org/maven-snapshot-repository/org/apache/lucene/lucene-core/maven-metadata.xml> says that 2.3-SNAPSHOT is the only available version: <?xml version="1.0" encoding="UTF-8"?><metadata> <groupId>org.apache.lucene</groupId> <artifactId>lucene-core</artifactId> <version>2.3-SNAPSHOT</version> <versioning> <versions> <version>2.3-SNAPSHOT</version> </versions> <lastUpdated>20080124085133</lastUpdated> </versioning> </metadata> So maybe the cron job that copies the maven artifacts to the snapshot repo area is misbehaving? Steve --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]