Question

Would like to know how to integarate cruise control with maven? Cruise Control comes with ant integraation by default and in the config.xml has antbootstapper.But dint find any bootstrapper for maven.Would like to know the configuration for maven.

Était-ce utile?

La solution

You should be able to configure maven with cruisecontrol without a need for a specific maven bootstrapper.

What you need is a bootstrapper for the version control that you are using. Cruisecontrol provides bootstrappers for most of them. Using this, you can update pom.xml.

Using the maven scm plugin, you can specify the scm configuration in your pom.xml and thereafter run mvn scm:update prior to your build. e.g.

mvn scm:update clean install
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top