This is an automated email from the ASF dual-hosted git repository. kwin pushed a commit to branch feature/enhanced-plugin-report in repository https://gitbox.apache.org/repos/asf/maven-plugin-tools.git
commit 133cd52cfcd83b074d1e5f19d06fc935e37b328c Author: Konrad Windszus <[email protected]> AuthorDate: Wed Oct 26 14:19:39 2022 +0200 Use latest m-p-p and m-p-report-p also for the site of m-plugin-tools --- maven-plugin-plugin/pom.xml | 2 +- maven-plugin-report-plugin/pom.xml | 2 +- pom.xml | 18 +++++++++++++++++- 3 files changed, 19 insertions(+), 3 deletions(-) diff --git a/maven-plugin-plugin/pom.xml b/maven-plugin-plugin/pom.xml index 7b410964..d1396f1c 100644 --- a/maven-plugin-plugin/pom.xml +++ b/maven-plugin-plugin/pom.xml @@ -271,7 +271,7 @@ <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-plugin-plugin</artifactId> + <artifactId>maven-plugin-report-plugin</artifactId> <reportSets> <reportSet> <reports> diff --git a/maven-plugin-report-plugin/pom.xml b/maven-plugin-report-plugin/pom.xml index 85296907..aeb51187 100644 --- a/maven-plugin-report-plugin/pom.xml +++ b/maven-plugin-report-plugin/pom.xml @@ -113,7 +113,7 @@ <artifactId>junit-jupiter-api</artifactId> <scope>test</scope> </dependency> - <!-- Depenency is listed here because it's used in ITs --> + <!-- Dependency is listed here because it's used in ITs --> <dependency> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> diff --git a/pom.xml b/pom.xml index 07e914a9..21aba268 100644 --- a/pom.xml +++ b/pom.xml @@ -66,8 +66,8 @@ <module>maven-plugin-annotations</module> <module>maven-script</module> <!-- keep at end since ITs require every extractors --> - <module>maven-plugin-plugin</module> <module>maven-plugin-report-plugin</module> + <module>maven-plugin-plugin</module> </modules> <scm> @@ -325,6 +325,22 @@ <trimStackTrace>false</trimStackTrace> </configuration> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-plugin-plugin</artifactId> + <version>${project.version}</version> + <configuration> + <internalJavadocBaseUrl>./apidocs/</internalJavadocBaseUrl> + <externalJavadocBaseUrls> + <externalJavadocBaseUrl>https://docs.oracle.com/javase/8/docs/api/</externalJavadocBaseUrl> + </externalJavadocBaseUrls> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-plugin-report-plugin</artifactId> + <version>${project.version}</version> + </plugin> </plugins> </pluginManagement> </build>
