Tagged Questions
The maven-javadoc-plugin tag has no wiki summary.
8
votes
4answers
242 views
Using Eclipse compiler instead of javac results in javadoc crash
Summary:
I've run into an interesting problem, and I'm not quite sure how to sleuth it:
Our project has been building fine for months
I changed the maven-compiler-plugin to use the eclipse compiler ...
7
votes
3answers
1k views
Maven site (Maven 3) generates empty site folder
I'm attempting to create a basic maven site using the maven site plugin. So I added this to my pom:
<reporting>
<plugins>
<!--JavaDoc setup-->
<plugin>
...
2
votes
1answer
131 views
How to link source classes JavaDoc from Test JavaDoc in maven site?
Having configured maven-site-plugin and maven-javadoc-plugin (with doclava doclet), I'm trying to get proper JavaDocs on the site generated by mvn site. In my code I have sevaral JUnit test classes ...
2
votes
2answers
675 views
How do I make javadoc inheritance work for external APIs? (with Maven2)
When a class overrides a concrete method or implements and abstract method, the Javadoc is automatically inherited unless explicitly overwritten.
Or, at least the tool tries to do this. It seems it ...
1
vote
1answer
28 views
maven 3 javadoc plugin ignores configuration
I use maven 3 and have my javadoc configured according to the new maven 3 siteplugin+javadoc configuration. However all of my javadoc configuration parameters seem to be ignored. So no package ...
1
vote
0answers
103 views
Having trouble with maven-javadoc-plugin aggregation
I have a Maven aggregate project with three child modules, so the project is like so:
Parent
|
|- ChildA
|- ChildB
|- ChildC
The classes use aggregation and inheritence: Parent lists the ...
1
vote
0answers
343 views
Maven multi-module project site with javadocs
I would like use Maven for creating site for my application. This is a multi-module app, the parent module is simple site module, and first child is a core of app, the second is a GUI (Swing).
I now ...
1
vote
3answers
454 views
Understanding Java as a Delphi programmer
I have a database I have created in Delphi that’s still in the testing phase
I found it easy to give access to my database through Java in the form of a *.dll
but this is not just a standard database ...
0
votes
0answers
35 views
maven 3 javadoc plugin doesn't take the excludepackagename config
I'm trying to exclude a bunch of packages from a javadoc site.
Unfortunately this plugin seems to live its own life and when it was configured as a report plugin it failed with access denied when ...
0
votes
3answers
36 views
Multimodule maven java doc build
I have multimodule maven project like this
myproject
framework1
f1-presentation
*.java
f1-core
*.java
f1-tag
*.java
framework2
f2-presentation
*.java
...
0
votes
0answers
36 views
javadoc:aggregate deletes product target folder
I can "mvn clean install" to generate zip file of my multi-project application in target folder of my product project. I can run "mvn clean javadoc:aggregate" to generate javadocs.
no problem up to ...
0
votes
1answer
124 views
Ignore Sibling-Modules During Maven Javadoc/Site Compilation
I have a Maven-managed project which contains a few modules, one of which is the actual library of interest. The other modules are just add-ons or examples that build off of the library. I'm looking ...
0
votes
1answer
268 views
How to generate Javadoc for Maven Dependencies
I have a maven project with the following POM snippet:
<modelVersion>4.0.0</modelVersion>
<artifactId>Foo-Deploy</artifactId>
<name>Foo-Deploy</name>
...
0
votes
1answer
986 views
Maven 3: Generate Javadoc for defined artifacts
I want to generate javadocs only for certain artifacts of my project from within a dedicated docs-project.
That means that I would like to have a independent project called "docs" for example. In the ...
0
votes
2answers
740 views
Maven Release Plugin deployment of sources.jar and javadoc.jar
I use maven release plugin for generating release of my project. I do not want to generate Javadoc all time I build. On the other hand when I call release:perform I would like if maven would generate ...
0
votes
2answers
30 views
How do I avoid specifying the defaulAuthor element during javadoc creation
How do I avoid specifying the defaulAuthor element during javadoc creation using the javadoc plugin. I don't want the author element, since the javadocs will be shipped to customers.