Questions tagged [maven-site-plugin]

The Maven Site Plugin is used to generate a site for the project. The generated site also includes the project's reports that were configured in the POM.

The Site Plugin is used to generate a site for the project. The generated site also includes the project's reports that were configured in the POM.

Please check the official usage page for a first look at this plugin.

If you are using the old plugin version 2, check the official migration guide on the version 3 usage.

More info

206 questions
2
votes
0 answers

Maven site descriptor in multi-module via "build-tools"

I fight at the moment with the maven-site-plugin in a multi-module project. Actually I use the default skin for all projects, but now I want change this. Because many of them are multi-module projects I use already a "build-tools" extension with the…
apollox
  • 21
  • 3
2
votes
0 answers

maven-site: how can I configure the project documentation/information?

I use the maven site plugin with the fluido-skin. In my site.xml I use to include the project documentation. However, this gives me: I do not like the indirection from the empty menu entry "project…
Jan Galinski
  • 11,768
  • 8
  • 54
  • 77
2
votes
1 answer

Maven dependency-convergence report in a multi-module project

I'm trying to use the dependency-convergence report of the maven-project-info-reports plugin in a multi-module project that looks like: test-project-parent + test-lib-a + test-lib-b If I run site:site on the test-lib-a pom I get the report I…
takteek
  • 7,020
  • 2
  • 39
  • 70
2
votes
2 answers

Error uploading site: Failed to transfer file: Return code is: 401 ->

I'm unable to deploy the site made by the maven-site-plugin. I get similar errors as in this question: Maven site deploy logs filling with [WARNING] Required credentials to nexus 3 but there is an comment in it which says that the issue is known…
ender.an27
  • 703
  • 1
  • 13
  • 35
2
votes
1 answer

Maven site Google issue in China

on and all pages generated with newer template e.g. http://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html There is code
Paul Verest
  • 60,022
  • 51
  • 208
  • 332
2
votes
0 answers

Is it possible to specify in a parent pom exactly where I want to deploy a site?

In the team I work for, I need to deploy site artifacts to a maven repo in the following format: http://therepo/site/${project.groupId}/${project.artifactId}/${project.version} Because I'm a big fan of doing things in a DRY manner, I have put this…
Jason Thompson
  • 4,643
  • 5
  • 50
  • 74
2
votes
2 answers

maven-site-plugin: Configure which page should be the index.html

I have configured the maven-site-plugin the following way: org.apache.maven.plugins maven-site-plugin 3.3
siom
  • 1,610
  • 1
  • 14
  • 21
2
votes
1 answer

maven site plugin is not working well behind a proxy

I'm using maven (apache-maven-3.2.1) and maven-site-plugin into my project. while doing mvn site behind a proxy I got the following warnings / slowness : [INFO] Rendering site with org.apache.maven.skins:maven-default-skin:jar:1.0 skin. [INFO]…
boly38
  • 1,806
  • 24
  • 29
2
votes
4 answers

How to include goals & parameters in documentation for a 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 documentation (a page that shows the Mojo goals,…
Dónal
  • 185,044
  • 174
  • 569
  • 824
2
votes
2 answers

Maven site documentation: Add links to additional documents

I want to generate project documentations with the Maven site plugin. The default layout, structure and functions with "Project Information" and "Project Reports" is ok for me. But I want to add an additional (third) section "Additional…
2
votes
1 answer

Internationalization of the description tag in pom.xml

I'm doing a maven-site for a project and I want to internationalize it. The good thing is that site generation done by the Maven Site Plugin and the Project Info Reports Plugin is already fully internationalized. The Maven site plugin use the…
matiou
  • 156
  • 1
  • 7
2
votes
0 answers

'mvn site' fails unless I've already run 'mvn install'

As the title says, I'm unable to generate a site unless I run 'mvn install' first. Also, note that 'mvn install site' doesn't work either. The two goals have to be run separately. This is a multi module project. If it's possible (and I'm sure it is)…
l3dx
  • 2,930
  • 6
  • 33
  • 43
2
votes
1 answer

How to integrate maven-surefire-report-plugin into maven-site-plugin using report-only goal

I have the following issue: The maven-surefire-report-plugin invokes the lifecycle goal test. This starts my testrunner again. To prevent this, they made this workaround: http://jira.codehaus.org/browse/SUREFIRE-257 I am now encountering…
Xavjer
  • 8,838
  • 2
  • 22
  • 42
2
votes
1 answer

Error while using maven site plugin (AbstractMethodError)

When trying to do a mvn site:run with this project:
Sandra
  • 3,560
  • 5
  • 24
  • 31
2
votes
1 answer

Maven surefire, site and site-report.html

we run a lot of JUnit tests like this: public static class Group1 extends AbstractTester { @Test public void testSomething() { // Testmethod } } With several Groups. surefire-report yields a warning for each group that looks…
Dennis Ich
  • 3,585
  • 6
  • 27
  • 44