In my build setup, I have release builds and continuous builds (in which scm is polled). I use the maven-release plugin in pom.xml and use the release target: prepare release: execute in Release builds. This target checks the code from SVN, deploys and increments the artifact.version number in pom.xml, and retransmits it to SVN. Therefore, since pom.xml was bound to SVN, and Continuous build is an SCM poll, it starts and runs Continuous build. How can I make it NOT run the Continuous assembly when the release target updates pom.xml and commits it?
source share