Hi,
I've got a project, which is distributed as a web application. I'd
like to include the site into the webapp. As you possibly know, the
assembly plugin does support this, so it shouldn't be all too
impossible.
I tried the following snippet in my POM. Unfortunately, this seems to
trigger an endless loop between the site and the javadoc plugin.
Any other ideas how I might achieve my goal?
Thanks,
Jochen
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<executions>
<execution>
<phase>generate-resources</phase>
<goals>
<goal>site</goal>
</goals>
<configuration>
<outputDirectory>${webappDirectory}/docs</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
--
I Am What I Am And That's All What I Yam (Popeye)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]