Hi, I have two builds in Hudson: one is a continuous build that does "mvn clean install", the other is a nightly build that does "mvn clean deploy". They are both built from the same source.
The continuous build works just fine, but the nightly is filling up all available disk space because it stores timestamped SNAPSHOTs in the local repository. There is no benefit for me in those timestamps, so I'd be glad to get rid of them. I assume they are added because of the deploy goal, right? Is there a way to get rid of those timestamps? I'd love to keep them for my deployed artifacts in my Nexus repo, but not in the build's private local repository. If not, then is there a way to clean up all built artifacts from a local repository, similar to "mvn dependency:purge-local-repository"? Thanks, Lóránt
