Stephen Gray wrote:
Im actually using CruiseControl. How would that be implemented?Add a goal 'site:sshdeploy' to your goal list in CruiseControl. Or you could create a maven.xml with a special cc goal which performs the build and site deploy as you would do manually.
maven.xml: ... <goal name="cc-build"> <attainGoal name="jar:deploy-snapshot"/> <attainGoal name="site"/> <attainGoal name="site:sshdeploy"/> </goal>
You have to make sure the sshdeploy (or fsdeploy) work automatically when you run them from within CC. This depends on under which user you run your CC build, etc.
Martijn
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
