> It look like a something interesting, the problem is to integrate this > with > our continuous integration system. Since we use Hudson, maybe I can > trigger > a new build that will make the site, but that is not a perfect fit.
I don't think that it's a problem to integrate this with a continuous integration system. If you can do it with your console (like DOS) you can generally do it with your continuous integration system (like hudson). Is it possible, on the same command line, to use a profile to make something > and use another profile to do something else? > e.g. : mvn -Pcompile deploy -Psite site site:deploy I haven't try it, but I think it should work : mvn deploy site site:deploy -Pcompile,site or even better mvn clean deploy site-deploy -Pcompile,site Rémy
