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
4
votes
1 answer

How to fail Velocity template processing with tracable message

Having: Velocity template or macro some object How to validate the object (#if) and fail (stop further processing) in a way that is easily tracable to the place of failure (like throwing exception in Java). I am looking for something like…
Mrkvozrout
  • 314
  • 1
  • 9
4
votes
1 answer

IntelliJ 'maven-site-plugin' reportPlugins showing error, haven't even done anything yet

I am new to IntelliJ and Maven so this is all going above my head I'm following the DropWizard tutorial here and I only did the first step through IntelliJ where I add a Maven archetype with the following values GroupId=…
AnonyMouse
  • 432
  • 8
  • 24
4
votes
1 answer

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 <-- 3rd party code I tried this in my parent's…
Aaron Digulla
  • 321,842
  • 108
  • 597
  • 820
4
votes
1 answer

Allure: failed to get report for ru.yandex.qat ools.allure:allure-maven-plugin

I try to fasten Allure to my tests. I get started as documentation says (https://github.com/allure-framework/allure-core/wiki#getting-started) But there is an error I can not deal with: mvn site [INFO] --- maven-site-plugin:3.0:site…
Ksu
  • 83
  • 2
  • 6
4
votes
1 answer

Weird issue running maven site (problems were encountered while processing the POMs)

I'm trying to run mvn site but I keep getting this error message every time. I've tried googling, but have not found any solutions. I'm currently on a Windows machine running maven from git bash. [WARNING] Unable to create Maven project for…
tomas
  • 245
  • 2
  • 10
4
votes
2 answers

Maven fluido skin always renders left navigation empty on site

I couldn't get the maven-fluido-skin work completely - the left navigation section (the section that contains links to various project details) is always rendered empty. Not sure if I'm missing some skin configuration, but I'd have thought of this…
mystarrocks
  • 4,040
  • 2
  • 36
  • 61
4
votes
1 answer

How to fix broken sub-module links in Maven Site for multi-module project?

I am creating a Maven Site for a 3-level multi-module maven project which is structured like this: parent child-a child-b I am running mvn site site:stage The Maven site module link works for child-a but is broken for the nested module…
Justin
  • 6,031
  • 11
  • 48
  • 82
4
votes
0 answers

Maven Parent Pom with custom site.xml and images

I'm currently struggling with the maven site plugin. I have a corporporate/ super pom (packaging type pom) which defines all dependency version and also configures the site plugin. In addition I placed some image resources under…
Leikingo
  • 890
  • 3
  • 10
  • 23
4
votes
3 answers

How can I get the maven-site-plugin to resolve the parent pom.xml of my multimodule Maven project?

I have a garden variety Maven project. It has several modules in it. Thus the root pom.xml serves as both parent and aggregator in grand Maven fashion. This project builds and installs fine. The root pom.xml inherits from a corporate pom.xml with…
Laird Nelson
  • 15,321
  • 19
  • 73
  • 127
4
votes
1 answer

When building a Maven site, why does my annotation processor run twice and break the build?

I have a build that uses the annotation processor plugin to generate JPA criteria classes with the Hibernate JPA 2 Metamodel Generator. This works well when doing a normal mvn clean package, but when I build the site, it fails: [INFO] ---…
eerriicc
  • 1,124
  • 4
  • 17
  • 29
4
votes
2 answers

Failure in maven site plugin version 3?

I am trying to get a project to run the maven site:site goal using Maven 3.0.4. Unbeknownst to me, it had been running under Maven 2.2.1 (when I thought it should have been 3). I keep getting the following failure: Failed to execute goal…
Jim Jarrett
  • 458
  • 1
  • 6
  • 12
4
votes
1 answer

how to generate a Google sitemap for Maven site?

Is it possible to generate Google Sitemap by maven-site-plugin?
yegor256
  • 102,010
  • 123
  • 446
  • 597
4
votes
1 answer

Maven Site, set TeamCity as ciManagement system?

Is there a way I can configure my Maven site to display TeamCity as the CI Management tool? I've tried specifying "TeamCity", "Team City" and even "http://www.jetbrains.com/teamcity/", but the resulting Maven site simply displays "This project…
RCross
  • 4,919
  • 4
  • 44
  • 42
4
votes
2 answers

How to use Confluence markup language with Maven 3 site Plugin?

I'd like to use Confluence markup language to generate my site using the Maven site plugin. As said in the doxia documentation, it seems to be possible. Here is my file structure (as required by the site plugin documentation) : src +- site +-…
Anthony O.
  • 22,041
  • 18
  • 107
  • 163
4
votes
1 answer

Always deploy staged site by default for multi-module site?

I'm struggling to understand the complexities of deploying a multi-module maven site that has working links. This is complicated by the fact that I'm deploying to Google Code using the maven-scm-provider-hg. According to the docs, I'm supposed to…
TheLQ
  • 14,830
  • 14
  • 69
  • 107
1 2
3
13 14