This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 225397 - Inconsistency in Javadoc behaviour
Summary: Inconsistency in Javadoc behaviour
Status: NEW
Alias: None
Product: apisupport
Classification: Unclassified
Component: Maven (show other bugs)
Version: 7.3
Hardware: PC Windows 7
: P3 normal (vote)
Assignee: Milos Kleint
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-01-28 06:49 UTC by mienamoo
Modified: 2013-01-28 09:31 UTC (History)
0 users

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description mienamoo 2013-01-28 06:49:35 UTC
NetBeans build 201301250001
JDK 7u11 64-bit

I have noticed that there is an inconsistency between the generated Javadocs and the Analyze Javadoc behaviour for Maven-based NetBeans Module projects. Analyse Javadoc sticks to the Ant-based convention of checking only the public packages. But the generated Javadocs for the Maven-based project does include private packages too. So one of the two should IMHO be changed so that they match each other.
Comment 1 Milos Kleint 2013-01-28 09:31:14 UTC
Analyze javadoc is an IDE specific action that works on top of the IDE's data structures.
running mvn:javadoc on the other hand only relies on the maven model, we currently don't synchronize the nbm-maven-plugin configuration with javadoc plugin's configuration.  Doing so could prove fragile since it's not obvious how the 2 configurations should be synchronized.

not a defect, and low priority.