Hello,
I used to used maven-javadoc-plugin 2.4 for custom doclet processing.
If I try to upgrade to version 2.5, I get :
javadoc: error - Illegal package name: "Copyright © 2009. All Rights Reserved."
Command line was:"C:\Program
Files\Java\jdk1.6.0_11\jre\..\bin\javadoc.exe" @options
Extract from pom :
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<!-- version configured by parent -->
<executions>
<execution>
<phase>process-resources</phase>
<goals>
<goal>javadoc</goal>
</goals>
</execution>
</executions>
<configuration>
<subpackages>my.package</subpackages>
<exclude>another.package</exclude>
<doclet>company.tools.DocletSearchEjbService</doclet>
<docletArtifacts>
<docletArtifact>
<groupId>company</groupId>
<artifactId>config-servicelocator-doclet</artifactId>
<version>1.0-SNAPSHOT</version>
</docletArtifact>
</docletArtifacts>
<additionalparam>-tag
${project.build.outputDirectory}/file.properties</additionalparam>
</configuration>
</plugin>
I tried to configure "bottom" tag, but it always fail.
Thanks
Damien
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]