Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 2.4
-
Fix Version/s: 2.5
-
Labels:None
-
Environment:Maven version: 2.0.9
Java version: 1.5.0_12
OS name: "windows xp" version: "5.1" arch: "x86" Family: "windows"
-
Number of attachments :4
Description
The javadoc does not include the "additional source" files defined using the "build-helper:add-source" in each of my subproject pom files when using javadoc plugin 2.4. The javadoc plugin 2.3 worked correctly.
I use the "build-helper:add-source" to include additional source directories to the build. The additional source directories contain my generated source file. When I run the command using javadoc plugin version 2.4:
mvn javadoc:javadoc -Daggregate=true
(or have the aggregate=true specified inside of the pom) the "build-helper:add-source" is not run for each of the subprojects before the aggregated javadoc is created. Therefore the javadoc does not include the documentation for the files in the additional source directories.
I also noted that the output for 2.3 javadoc plugin is:
[INFO] task-segment: [javadoc:javadoc] (aggregator-style)
but the output for the 2.4 javadoc plugin is:
[INFO] task-segment: [javadoc:javadoc]
I am not sure if the above output is changed between versions or if the "aggregator-style" is not detectd in the 2.4 version and has an influence in this issue.
I have attached the log file for running my project using javadoc plugin version 2.3 and 2.4. Version 2.3 works and version 2.4 does not include the additional source files in the aggregated javadoc.
-
Hide
- JavaDocTestCase.zip
- 04/Jun/08 4:18 PM
- 48 kB
- Lois Modesitt
-
- JavaDocTestCase/javadoc2.3out.txt 6 kB
- JavaDocTestCase/javadoc2.4out.txt 6 kB
- JavaDocTestCase/.../GeneratedTest1.java 0.1 kB
- JavaDocTestCase/module1/pom.xml 0.9 kB
- JavaDocTestCase/module1/.../test/Test1.java 0.1 kB
- JavaDocTestCase/.../GeneratedTest1.class 0.3 kB
- JavaDocTestCase/module1/.../test/Test1.class 0.2 kB
- JavaDocTestCase/module1/.../pom.properties 0.1 kB
- JavaDocTestCase/.../module1-1.0.0.0-SNAPSHOT.jar 2 kB
- JavaDocTestCase/.../GeneratedTest2.java 0.1 kB
- JavaDocTestCase/module2/pom.xml 0.9 kB
- JavaDocTestCase/module2/.../test/Test2.java 0.1 kB
- JavaDocTestCase/.../GeneratedTest2.class 0.3 kB
- JavaDocTestCase/module2/.../test/Test2.class 0.2 kB
- JavaDocTestCase/module2/.../pom.properties 0.1 kB
- JavaDocTestCase/.../module2-1.0.0.0-SNAPSHOT.jar 2 kB
- JavaDocTestCase/pom.xml 3 kB
- JavaDocTestCase/Readme.txt 5 kB
- JavaDocTestCase/.../allclasses-frame.html 1 kB
- JavaDocTestCase/.../allclasses-noframe.html 1.0 kB
- JavaDocTestCase/.../constant-values.html 5 kB
- JavaDocTestCase/.../deprecated-list.html 5 kB
- JavaDocTestCase/target/.../help-doc.html 9 kB
- JavaDocTestCase/target/.../index-all.html 7 kB
- JavaDocTestCase/target/.../index.html 1 kB
- JavaDocTestCase/.../overview-tree.html 5 kB
- JavaDocTestCase/target/.../package-list 0.0 kB
- JavaDocTestCase/target/.../inherit.gif 0.1 kB
- JavaDocTestCase/target/.../stylesheet.css 1 kB
- JavaDocTestCase/.../GeneratedTest1.html 5 kB
-
- m209out-UsingJavadoc2.3.txt
- 30/May/08 5:42 PM
- 1.05 MB
- Lois Modesitt
-
- m209out-UsingJavadoc2.4.txt
- 30/May/08 5:42 PM
- 1.31 MB
- Lois Modesitt
-
- m209out-UsingJavadoc2.5SNAPSHOT.txt
- 02/Jun/08 3:13 PM
- 450 kB
- Lois Modesitt
Issue Links
- is related to
-
MJAVADOC-137
javadoc:javadoc always runs as "aggregator"
-
-
MJAVADOC-168
Regression: 2.4-SNAPSHOT does not generate docs for generates sources if run outside a build
-
-
MJAVADOC-196
Create AggregatorJavadocMojo similar to AggregatorSourceJarMojo
-
Activity
aggregated javadoc created BEFORE "build-helper:add-source" run on each module involved in the aggregated javadoc. Therefore the source files included with the "build-helper:add-source" is not included in the aggregated javadoc. Using the command:
mvn javadoc:javadoc -Daggregate=true
I used the 2.5-SNAPSHOT version of the maven-javadoc-plugin and this did not fix the problem.
The attached log files show the order of execution of the "javadoc" and the "build-helper:add-source" for each module included in the project is different between 2.3 (works) and 2.4/2.5-SNAPSHOT (does not work).
Sorry, but I am not sure to understand correctly your usecase: could you send us a test case?
UseCase:
Create aggregated javadocs for both source code in the default location and
source code in an additional location. I include the "additional source code directory"
using the "build-helper-maven-plugin" which is included in the parent pom:
JavaDocTestCase/pom.xml.
Problem:
When I run the command:
mvn javadoc:javadoc -Daggregate=true
using javadoc version 2.4, the classes in the "additional" source code directory
is not included in the aggregated javadocs.
*******Using javadoc version 2.3, works correctly by including the additional
source code directory.**********
See the attached file JavaDocTestCase.zip.
Please read the file "Readme.txt" for more information about this test.
Let me know if you have any more questions.
Will this change be done to the 2.5-SNAPSHOT? If it is, will someone let me know so that I can try out the 2.5-SNAPSHOT with this fix?
I just fixed MJAVADOC-196 so you will be able to try the 2.5-snap
I used the javadoc plugin 2.5-SNAPSHOT version: 20080606.132616-15 and the problem is still there. Is your change in this version of the SNAPSHOT?
yes but you need to call javadoc:aggregate instead of javadoc:javadoc. See svn log file http://svn.apache.org/viewvc?rev=663917&view=rev
You could also generate the documentation from the trunk.
Yes, that fix is great. I tried the test using javadoc:aggregate and the problem is resolved. Thanks
Do you (Vincent) close this issue? Or am I supposed to do this?
This sound like a duplicate of
MJAVADOC-168which has just been fixed and a new snapshot deployed. Could you verify?