The only SNAPSHOT reference I see in maven/pom.xml is the project version of 0.3-SNAPSHOT, which gets updated during release.
At some point it asks me what the release version should be and next dev version -- I say 0.3 and 0.4-SNAPSHOT, right? This is my settings.xml -- don't see anything obviously wrong and it should be set up according to our release instructions: <?xml version="1.0" encoding="UTF-8"?> <settings> <profiles> <profile> <id>mahout_release</id> <properties> <gpg.keyname>sro...@apache.org</gpg.keyname> <gpg.passphrase></gpg.passphrase> <deploy.altRepository>mahout.releases::default::scp://people.apache.org/home/srowen/public_html/staging-repo/mahout</deploy.altRepository> <username>srowen</username> <deploy.url>scp://people.apache.org/home/srowen/public_html/staging-repo/mahout</deploy.url> </properties> </profile> <profile> <id>apache-release</id> <properties> <gpg.passphrase></gpg.passphrase> </properties> </profile> </profiles> <servers> <!-- To publish a snapshot of some part of Maven --> <server> <id>apache.snapshots.https</id> <username>srowen</username> <password></password> </server> <!-- To publish a website of some part of Maven --> <server> <id>apache.website</id> <username>srowen</username> <filePermissions>664</filePermissions> <directoryPermissions>775</directoryPermissions> </server> <!-- To stage a release of some part of Maven --> <server> <id>apache.releases.https</id> <username>srowen</username> <password></password> </server> <!-- To stage a website of some part of Maven --> <server> <id>stagingSite</id> <!-- must match hard-coded repository identifier in site:stage-deploy --> <username>srowen</username> <filePermissions>664</filePermissions> <directoryPermissions>775</directoryPermissions> </server> </servers> </settings> On Thu, Mar 11, 2010 at 12:58 PM, Benson Margulies <bimargul...@gmail.com> wrote: > Or the version didn't get set to non-SNAPSHOT in the plugin's pom? > > On Thu, Mar 11, 2010 at 7:05 AM, Sean Owen <sro...@gmail.com> wrote: > >> Ah just the mvn -Prelease,mahout_release release:prepare business >> >> On Thu, Mar 11, 2010 at 12:02 PM, Grant Ingersoll <gsing...@apache.org> >> wrote: >> > What were you running when you hit this? >> >