Tagged Questions
0
votes
0answers
38 views
Specify javadoc path for dependency?
For a javadoc not available in the repository (for a dependency that's not available in a repository), how can one specifiy the Javadoc archive in Maven?
I currently have this entry:
...
1
vote
1answer
121 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
2answers
111 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 ...
2
votes
1answer
151 views
How can I make mvn checkstyle check if all my javadoc comment's contents start with an uppercase?
I'd like to have my checkstyle configured so that it verifies all my javadoc comments start with an upper case letter:
/**
* Hello
Where can I set that up? I think I'll have to enable checkstyle ...
1
vote
0answers
642 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 ...
2
votes
1answer
195 views
Is there a way to get Maven to install javadocs for all dependencies to my local repo?
By running mvn dependency:sources I can force maven to resolve all dependencies in my project, download the sources, and install them into my local repo.
Is there something that does the same thing ...
0
votes
3answers
2k views
How to add javadocs to a Maven build on Hudson
I am using Hudson 1.389 and Maven 2, and am generating javadocs as part of my build.
Javadocs are generated to: target/apidocs.
However, there is no link to them from the Hudson project page (or the ...
4
votes
1answer
2k views
How to use javadoc:aggregate properly in multi-module maven project?
This is my parent pom.xml file (part of it) in a multi-module project:
...
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
...
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 ...
2
votes
4answers
3k views
Publishing javadoc automatically when building a maven project with hudson
I'm using Hudson to build Maven-projects with the dedicated Maven 2 job. unfortunately, I can't find any way to publish the generated javadoc like it can be done using a "Free Style" job and the ...
0
votes
1answer
257 views
OOM Error w/ javadoc plugin -Xmx doesn't work!
I'm trying to run javadoc on a multi-module Maven project and I keep getting OutOfMemory Error no matter how high I set the heap. I've even tried upping the pergen space. Is there a way to find the ...
0
votes
2answers
466 views
How can I view javadocs that have been added to a maven repository?
I know I can use maven to pull the javadocs for an artifact (if they've been added), which should come through as a JAR (right?), which I can then unpack and browse. My problem is, I'm trying to ...
6
votes
1answer
2k views
maven site plugin not deploying subprojects in a multimodule project or generating index.html
I have a multimodule project that I want to deploy a site for, but it seems like my site deployment configuration is not being inherited by subproject child modules.
parent
moduleA
moduleB
On ...
2
votes
2answers
2k views
UmlGraph vs APIViz for Maven javadoc generation
I'm wondering if there are any clear reasons to choose UmlGraph over APIViz for javadoc UML diagram generation in a Maven2 build. Are there any integration or features that one has over the other, ...
2
votes
3answers
3k views
open source tool to generate Javadocs through Maven2 with automatic UML diagrams like ydoc
I want to generate javadocs through maven's site generation plugin and I want to have automatic UML diagrams created and embedded in the javadoc.
The statsvn project uses yDoc to generate their UML ...
0
votes
1answer
1k views
Adding dynamic links to JavaDoc within Maven Site generated html
I am wondering if there is a way through the maven site plugin to have it automatically create a link to some JavaDoc structure (like a class) within the html it generates.
As an example of what I ...
3
votes
2answers
6k views
Maven include JavaDoc Jar in Assembly
I have a project with multiple modules, including on that is responsible for building the final assembly from the artifacts of the other modules. As part of the assembly, I want to include the ...
8
votes
5answers
7k views
Maven javadoc plugin - how can I include only certain classes?
Using the Maven javadoc plugin you can exclude certain packages - but I have lots of packages and only a handful of classes I want to produce Javadoc for.
Is there a way to include rather than ...
2
votes
1answer
2k views
How to check and access javadoc/source for Maven Artifacts
I am writing a Maven plugin which needs to check if a certain project
dependency has javadocs and sources available... and if so, would like
to download them and archive them on a server.
I cannot ...
7
votes
1answer
3k views
javadoc for package-info.java only
I have a situation where I'd like to execute javadoc in a project that has no classes. It only has package-info.java for one package. When executing javadoc, the following error is given:
An error ...
2
votes
2answers
1k views
Why does Maven javadoc fail with error “cannot read options”?
When I run mvn javadoc:javadoc, I get the following error:
[ERROR] BUILD ERROR
[INFO] ------------------------------------------------------------------------
[INFO] An error has occurred in ...
52
votes
14answers
47k views
Get source jar files attached to Eclipse for Maven-managed dependencies
I am using Maven (and the Maven Eclipse Integration) to manage the dependencies for my Java projects in Eclipse. The automatic download feature for JAR files from the Maven repositories is a real time ...