[doodleproject] Integrating into the Maven 2 site command
Brought to you by:
brentworden
|
From: Scott R. <sc...@th...> - 2008-09-10 16:19:54
|
I have successfully integrated the doxygen plugin into my maven 2 project
and can run the report command to generate diagrams and reports for my
project. When I run the mvn site command the doxygen files are empty. Is
there something special I need to do to get mvn site to run the doxygen
plugin and integrate the results into my maven site documentation. Here is
my configuration:
<reporting>
<plugins>
<plugin>
<groupId>net.sf.doodleproject</groupId>
<artifactId>doxygen-maven-plugin</artifactId>
<configuration>
<executable>C:\OpenSource\doxygen\bin\doxygen.exe</executable>
<alphabeticalIndex>true</alphabeticalIndex>
<generateHtml>true</generateHtml>
<input>${basedir}/src/main/java</input>
<filePatterns>*.java</filePatterns>
<recursive>true</recursive>
</configuration>
</plugin>
</plugins>
</reporting>
and i just run mvn site
Scott Ryan
President/CTO
Soaring Eagle L.L.C.
Highlands Ranch, Co. 80129
(303) 263-3044
sc...@th...
www.soaringeagleco.com
|