Well, I suggest to keep "deploy" a manual process, as unlike regular nightly builds, Maven snapshots are automatically loaded by dependent Maven projects, so the users may end up with an "upgrade" they are not ready for.

Running the unit tests in a nightly job is another story, and AFAIK our current nightly build process does that already.

Andrus


On Oct 12, 2006, at 2:22 PM, Kevin Menard wrote:

Great, I'll have to give it a look. I imagine you just have a cronjob that does "mvn deploy" nightly? Or is there something more at work here?

--
Kevin

Andrus Adamchik wrote:
Snapshot repo is configured in the main pom already. So "mvn deploy" should work.

One extra thing you need is to put your Apache user id in ~/.m2/ settings.xml :

<settings>
<servers>
        <server>
            <id>apache-snapshots</id>
            <username>aadamchik</username>
        </server>

</servers>
....

Andrus


Reply via email to