The Maven Javadoc Plugin uses the Javadoc tool to generate javadocs for the specified project.

learn more… | top users | synonyms

0
votes
1answer
24 views

Maven Javadoc Plugin During Site Goal: javadoc: error - java.lang.OutOfMemoryError: Please increase memory

I have been struggling to increase the memory of my javadoc plugin via my pom file. For some reason my Mac build slave fails during the site goal with an OutOfMemoryError. I tried adjusting the ...
0
votes
1answer
42 views

Maven javadoc plugin in maven site not working

I can't find any answer to this, maybe someone knows. I try to setup maven site and maven javadoc plugin but it seem to be impossible. Every time I run mvn site:run I get this stacktrace: Command ...
0
votes
1answer
50 views

How to skip test api docs in maven-javadoc-plugin?

I would like to skip generating 'testapidocs' folder in my 'target/site' folder after executing 'clean skip:skip' with following configuration. Build Configuration: <build> <plugins> ...
1
vote
1answer
125 views

Maven “Skipping javadoc generation” WHY?

I'm working on a maven project and want to generate the most basic of javadocs. This is the plugin I add to my pom.xml <build> <plugins> <plugin> ...
0
votes
1answer
113 views

Maven 3 site plugin issue with javadoc:test-javadoc

I am a Maven newbie, so bear with me please. I inherited this multi-module project and my boss want me to utilize site plugin along with other commonly used plugins such as javadoc, jxr and ...
0
votes
2answers
113 views

How can I compile and run my Custom Doclet class in my project?

I'm trying to dump all class javadoc comment (preferabbly subclasses of a libraries WebPage class) at compile time into a .properties file in the format classname=comment. So far I have: created ...
1
vote
2answers
60 views

Best way to set alternate JavaDoc location for all modules?

I'd like to set an alternate JavaDoc location for all my modules in a multi-module maven project. Unfortunately, I have to rely on relative paths, or else use maven properties like ${basedir}, since ...
0
votes
2answers
96 views

Alternate Output Directory for JavaDoc

I'm trying to configure an alternate output location for the JavaDocs in my multi-module maven project. I configured the maven-javadoc in the parent POM to look like this: <build> ... ...
1
vote
0answers
27 views

Linked javadocs across multiple code repos

I have a application whose various components are spread across about 100 git repos. They are all standalone maven projects (they have dependencies among themselves, of course), and I create a .war by ...
2
votes
1answer
156 views

JavaDoc giving fully-qualified class name… how to abbreviate?

Problem I'm running mvn javadoc:javadoc to generate JavaDoc, and I am pleased with the results, except for one thing: it gives the fully qualified class names for any class coming from a third-party ...
1
vote
1answer
182 views

Maven JavaDoc Plugin: Aggregate Dependencies

I am attempting to compile JavaDocs with: mvn javadoc:aggregate I keep getting errors such as: [ERROR] Failed to execute goal org.apache.maven.plugins:maven-javadoc-plugin:2.5:aggregate ...
0
votes
0answers
27 views

Forking Maven LifeCycle maven-plugin-plugin / maven-javadoc etc

Currently i don't understand why it's needed to fork the lifecycle of Maven in particular in relationship with maven-plugin-plugin (reporting goal) or maven-javadoc-plugin (as far as i know there are ...
1
vote
1answer
26 views

Java docs that include classes based on inheritance

Note that I have written "Java docs", as I'm not necessarily expecting the javadoc utility to acheive what I'm after (let alone the maven-javadoc-plugin I'm using). I need to produce a doc site that ...
3
votes
2answers
478 views

How to continuously build and deploy feature branches with Maven?

My team is using feature branches to implement new features and continuously deploys snapshot builds into a remote repo for our users to use. Thus 'deploy' really only means 'distributing to a remote ...
0
votes
1answer
153 views

Generate javadoc in maven and then upload via scp?

I have Maven javadoc plugin working nicely right now, but I do not know how to add it to the remote directory via scp. How do I transfer the javadoc files via scp, but AFTER they have been generated? ...
2
votes
1answer
426 views

NetBeans: JavaDoc is never shown

I am having a big issue. That is I am using NetBeans 7.1.2, and it never show me the JavaDoc instantly, when I type some method, it searches for the JavaDoc in the internet saying "Downloading ...
0
votes
0answers
75 views

NPE warning whilst using maven-javadoc-plugin

I'm getting an NPE warning whilst creating javadoc for a Maven plugin. I've not been able to find the cause, a fix or a workaround. Any suggestions for getting rid of this? The javadocs themselves ...
4
votes
1answer
488 views

Generating multiple javadoc reports using maven-javadoc-plugin and Maven 3

We use a custom doclet to generate a report from custom javadoc tags, and use the Maven site plugin and javadoc plugin to generate both this report and the regular java API docs. The section of the ...
0
votes
1answer
1k views

Generate Javadoc HTML using maven?

Right now I am using the maven-javadoc-plugin to attach the Javadoc to .jar artifacts when I am doing a release. However, how can I generate the Javadoc in an html format so we can scp it to a remote ...
0
votes
1answer
98 views

Purpose of maven-source-plugin and maven-javadoc-plugin?

I've been doing some research on the maven source and javadoc plugins, and I wanted to inquire a bit about the usage of each. I understand conceptually how the plugins work, and what they do. What ...
2
votes
0answers
223 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 ...
2
votes
1answer
833 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
3answers
464 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 ...
8
votes
5answers
655 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 ...
0
votes
1answer
102 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 ...
3
votes
1answer
1k 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
0answers
240 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
645 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 ...
0
votes
1answer
229 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 ...
3
votes
1answer
2k 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
2k 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 ...
1
vote
2answers
2k 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 ...
11
votes
3answers
3k 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> ...
1
vote
3answers
661 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
2answers
37 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.
5
votes
2answers
2k 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 ...