Hi,
thx, but this doesn't help me. My problem is that andromda-maven-plugin
will run once or even more for each report plugin in the reporting
section. Each code generation will take two minutes and more. So the
best way would be to stop the andromda-maven-plugin during site generation.
This is my configuration of andromda-maven-plugin
<plugin>
<groupId>org.andromda.maven.plugins</groupId>
<artifactId>andromda-maven-plugin</artifactId>
<version>3.2</version>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
<configuration>
<configurationUri>
${pom.basedir}/src/main/config/${andromda.config}
</configurationUri>
</configuration>
</plugin>
Maybe it is possible to say if the goal is site generation than do not
run this plugin?
Regards,
Ingo
simon schrieb:
On Sat, 2008-03-08 at 17:44 +0100, Ingo Düppe wrote:
Hello,
I like to exclude some of my modules within my multi-module projects
from beeing considered by report generating. For instance, I do like to
generate a aggregated javadoc report for all jar modules but not of the
model - module of andromda.
So how can I configure which modules should be considered during report
/ site generation?
I'm not aware of any standard feature to do this.
I would try configuring that plugin within each pom that should be
ignored to just select no files to process, eg
<exclude>**/*</exclude>
or whatever equivalent that particular report plugin supports.
Regards, Simon
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]