From 42f955e6640abe437c63f47cdf91b668e17e82ec Mon Sep 17 00:00:00 2001 From: Ubbo Veentjer <veentjer@sub.uni-goettingen.de> Date: Tue, 28 Jun 2022 00:36:03 +0200 Subject: [PATCH] move reporting from site plugin to own section. closes #29 --- pom.xml | 44 ++++++++++++++++++++++---------------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/pom.xml b/pom.xml index 8c69654..5230b51 100644 --- a/pom.xml +++ b/pom.xml @@ -453,28 +453,6 @@ <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>${maven-site-plugin-version}</version> - <configuration> - <reportPlugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-project-info-reports-plugin</artifactId> - <version>${maven-project-info-reports-plugin}</version> - <reportSets> - <reportSet> - <reports /> - </reportSet> - </reportSets> - </plugin> - <plugin> - <groupId>org.tomdz.maven</groupId> - <artifactId>sphinx-maven-plugin</artifactId> - <version>${sphinx-maven-plugin-version}</version> - <configuration> - <sourceDirectory>${basedir}/docs</sourceDirectory> - </configuration> - </plugin> - </reportPlugins> - </configuration> </plugin> </plugins> <resources> @@ -492,6 +470,28 @@ </resource> </resources> </build> + <reporting> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-project-info-reports-plugin</artifactId> + <version>${maven-project-info-reports-plugin}</version> + <reportSets> + <reportSet> + <reports /> + </reportSet> + </reportSets> + </plugin> + <plugin> + <groupId>org.tomdz.maven</groupId> + <artifactId>sphinx-maven-plugin</artifactId> + <version>${sphinx-maven-plugin-version}</version> + <configuration> + <sourceDirectory>${basedir}/docs</sourceDirectory> + </configuration> + </plugin> + </plugins> + </reporting> <profiles> <profile> <id>dev</id> -- GitLab