>
> From your reply, I don't think what I though was good.. Here was what I
> was
> having in mind :
> <profiles>
> <profile>
> <id>site</id>
> <modules>
> <module>module1</module>
> <module>module2</module>
> </modules>
> </profile>
>
> <profile>
> <id>compile</id>
> <activation>
> <activeByDefault>true</activeByDefault>
> </activation>
> <modules>
> <module>module1</module>
> <module>module2</module>
> <module>module3</module>
> </modules>
> </profile>
> </profiles>
>
> And then using the compile profile to compile and the site profile to
> build
> the report. On all module in the same command.
Of course... Sorry, little bit tired...
With an continuous integration system you can normally specify to
first build and deploy your project:
> mvn celan deploy -Pcompile
or > mvn clean deploy (because compile profile is active by default)
then create and deploy your web site:
> mvn clean site-deploy -Psite
You can do that with Hudson.
Rémy