Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
3answers
2k 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> ...
5
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 ...
3
votes
2answers
480 views

Maven's site generation is not working

Anyone not getting mvn site output? I was getting site output on my Macbook pro and I have deployed the site too. But tonight nothing works: [INFO] --- maven-site-plugin:2.0.1:site (default-cli) @ ...
2
votes
1answer
158 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
1answer
104 views

Replace Maven Site Plugin with GWT Compile Plugin

I have successfully set up a few projects which use Maven to automatically deploy the Maven-generated site to the gh-pages branch of their git repository. GitHub then serves these files at a public ...
2
votes
1answer
571 views

How to disable generation of Test Javadoc report in Maven 3 site plugin?

This is my pom.xml, I'm trying to disable Test Javadoc report in site: [...] <build> [...] <plugin> <groupId>org.apache.maven.plugins</groupId> ...
1
vote
1answer
53 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
1answer
24 views

Is there any rss reporter for maven site plugin?

I use maven site plugin to generate site for my product. Is there any ability to generate rss stream to notify users about new versions and new pages on the site?
1
vote
1answer
35 views

get aggregated information about maven dependencies

I have a deep hierarchy of maven projects. The top level projects are pure aggregation projects: they do not define dependencies themselves and just enumerate the child projects that have a lot of ...
1
vote
1answer
77 views

Resource Filtering with Maven Site Plugin

I'm using the maven site plugin to create and deploy a site of documentation and resources. There are some javascript files that I would like to filter based on what profile is being used. Problem is, ...
1
vote
1answer
260 views

Maven project + maven-site-plugin not working

I'm currently working with maven-site-plugin using Maven 3. The plugin is generating all the report as expected but due to my project layout (shown below), the main site shown does not show the ...
1
vote
0answers
351 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
1answer
544 views

Maven Site Plugin: How does menu inheritance work?

If I have a multi-module project, how can I inherit a menu from my parent POM? The project layout is: main <-- main project which just contains modules parent <-- parent POM ext ...
0
votes
0answers
13 views

plugin-info.html not being generated for Maven site

I have a custom Maven plugin for which I want to generate a site. The sole purpose of this site is to automatically document the plugin's available goals. However, when I execute mvn clean site, the ...
0
votes
0answers
12 views

MVN Site doesn't bring Project Modules structure properly

I have project like this. MainProject SubProject1 SubProject2 SubProject3 And i am trying to execute MVN SITE command. I am able to setup all other section in Project ...
0
votes
1answer
32 views

Maven site without parent directory

I have the following maven-setup: parent-project |- libraries |- utilities |- core |- component1 |- component2 in the parent i define all dependency- and pluginmanagement and the ...
0
votes
1answer
29 views

How do I create site content from a custom maven plugin?

I would like to generate some Maven site content from a custom Maven 3 plugin. I have not been able to find any documentation on how to go about this. How should I go about creating the content and ...
0
votes
0answers
210 views

Executing a script from Maven 3 using exec plugin - gets blocked

This is the situation I'm facing: at the moment I have two Maven projects, one that does nothing but describing dependencies, repositories, etc. (the parent) and a child which inherits the other's ...
0
votes
0answers
89 views

Maven site plugin to deploy snapshots and releases separately?

I would like to deploy a site for a hierarchy of Maven projects differently for snapshots and releases (i.e. http://example.org for releases and http://dev.example.org for snapshots) and keep the ...
0
votes
1answer
118 views

Maven site:deploy target Overwrite

I'm using the site distribution feature of maven (version 3.0.3) to upload generated content for our projects. It's configured in our pom.xml as such: <distributionManagement> <site> ...
0
votes
1answer
732 views

maven site for multi module

I have a maven project with lots of sub-modules, and I use parent pom to control the plugins the directory like below -pom.xml (parent pom) +- submodule1 +- submodule2 +- src\site\site.xml ...
0
votes
1answer
131 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
0answers
488 views

maven site-deploy to tomcat with webdav

I have used maven to generate a site for my project and want to use the site-deploy plugin to pubish the site to a webserver. I am using Tomcat with webdav enabled so created an empty war project and ...
0
votes
1answer
184 views

Maven site command fails

I'm trying to get maven site working, but I'm blocked on this error. [INFO] Failed to resolve artifact. Failed to resolve artifact, possibly due to a repository list that is not ...
0
votes
1answer
197 views

Maven properties in site apt files

How can I use maven properties in site APT files? For example I want to use ${project.version} in the index.apt so I can always refer to the latest version without manually changing the index.apt file ...
0
votes
4answers
211 views

maven plugin site

It appears that that you can generate a standard documentation website (like this one) from a Maven plugin project. I tried executing mvn site in a plugin project but it doesn't generate the expected ...