I'm attempting to use the Maven Doxygen plugin but cannot get it to generate any Doxygen files.
My setup:
-Using maven 3.0.5 (also tried 2.2.1)
-Repo is configured in Maven's settings .xml
-POM is configured with plugin in the build tag
The POM looks like:
<build>
...
<plugins>
<!-- http://doodleproject.sourceforge.net/mavenite/doxygen-maven-plugin/ -->
<plugin>
<groupId>net.sf.doodleproject</groupId>
<artifactId>doxygen-maven-plugin</artifactId>
<configuration>
<alphabeticalIndex>true</alphabeticalIndex>
<generateHtml>true</generateHtml>
<inputDirectory>${basedir}</inputDirectory>
<outputDirectory>${project.build.directory}/doxygen</outputDirectory>
<workDirectory>${project.build.directory}/doxygen-wk</workDirectory>
<filePatterns>*.java</filePatterns>
<recursive>true</recursive>
</configuration>
</plugin>
</plugins>
</build>
Have I missed any configuration elements? How can I get this to run?
I should add:
-running on Win7x64
-doxygen.exe is available on the PATH
-I have also tried adding the <executable> tag but no difference