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
3
votes
0 answers

Exclude single module of multi-module project from aggregated report

I'm calling mvn site site:stage goal on multi-module project. One of the modules fails because in the chain of dependencies, which I can't influence, is reference to the http:// plugin repository. This module is already excluded from site…
Danubian Sailor
  • 1
  • 38
  • 145
  • 223
3
votes
1 answer

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, I can't figure out how to get the filtering to…
Josh Johnson
  • 10,729
  • 12
  • 60
  • 83
3
votes
4 answers

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 reports. Can anyone advise how we can have the content…
user815809
  • 351
  • 5
  • 24
3
votes
1 answer

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 use follow for parent pom.xml
3
votes
1 answer

How to find the dependency where I should exclude the library?

I updated Maven from 3.0.5 to 3.5.3 version. I use maven-site-plugin-3.7. After the updates I try to execute command "mvn site site:deploy". I have the following error: [ERROR] : org.apache.commons.logging.LogConfigurationException:…
RuF
  • 548
  • 1
  • 11
  • 31
3
votes
1 answer

Maven Site Plugin: Define url in parent without adding subdirectories

I define a URL for a Maven site by site-nexus dav:http://ik-repo1:8084/nexus/content/sites/site/${project.groupId}/${project.artifactId}/${project.version}
J Fabian Meier
  • 33,516
  • 10
  • 64
  • 142
3
votes
3 answers

Export maven dependency list to CSV

I would like to export a dependency list for a maven project to a CSV or TSV file. I know that I can generate a dependency list as part of the "mvn site:site" command, but it is in a very inconvenient format for my needs. I need a simple CSV file…
Enwired
  • 1,563
  • 1
  • 12
  • 26
3
votes
4 answers

Maven searches for missing english locale of site.xml

During building a project with maven, I run into an issue generating javadoc after updating the version of its parent project. 2016-08-18 16:06:44.559 [INFO] <<< maven-javadoc-plugin:2.10.3:aggregate < generate-sources @ org.eclipse.scout.rt…
Patrick
  • 4,720
  • 4
  • 41
  • 71
3
votes
2 answers

Getting doxia-module-markdown to rewrite *.md links

My goal is to generate site documentation that is also browsable from within github, so I've written a bunch of markdown pages. I'm using maven-site-plugin with doxia-module-markdown to generate project documentation. The problem I'm running into is…
Mike Samuel
  • 118,113
  • 30
  • 216
  • 245
3
votes
0 answers

maven site throws cannot find symbol

I've an E4 project that build (mvn install) and launches fine inside eclipse and as a stand alone product. When I run a mvn site I get the following error [ERROR] Failed to execute goal org.apache.maven.plugins:maven-site-plugin:3.4:site…
SDS
  • 828
  • 3
  • 17
  • 35
3
votes
2 answers

Build a site zip with Maven

actually, I generate a maven site containing the documentation of my project. It works very well, in fact if works so well that my customers wants to get that site as a deliverable (for obvious documentation purpose). How can I tell Maven to build a…
spi
  • 626
  • 4
  • 19
3
votes
0 answers

Stop maven inherited distributionManagement site section from appending artifact id to the deployed URL

My maven distributionManagement section in my base pom.xml for the site looks like this: main-site Main Artifact Site
Noah
  • 1,608
  • 15
  • 31
3
votes
2 answers

How to add html content to maven site generated by the maven site plugin?

I am using the maven site plugin to generate a project site. This creates a default site and can be viewed under src/target/index.html. I need to add content to the index. How can this be done? ON reading the maven documentation, I created an…
user_mda
  • 18,148
  • 27
  • 82
  • 145
3
votes
1 answer

A: Can't generate reports for Maven site (Maven 3.0.x)

I just want to include basic reports in my Maven site. I've included this in my POM: ... org.apache.maven.plugins
3
votes
2 answers

How do I get Maven Site Descriptors to deploy to Artifactory?

I'm trying to generate a site for project that has a parent project and getting the following error. [INFO] Parent project loaded from repository: com.mycompany:java-parent:pom:2.0.8 [INFO] Parent project loaded from repository:…
Programming Guy
  • 7,259
  • 11
  • 50
  • 59