[ https://issues.apache.org/jira/browse/MPLUGIN-423?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17620478#comment-17620478 ]
ASF GitHub Bot commented on MPLUGIN-423: ---------------------------------------- kwin commented on code in PR #147: URL: https://github.com/apache/maven-plugin-tools/pull/147#discussion_r999760749 ########## maven-plugin-report-plugin/pom.xml: ########## @@ -0,0 +1,268 @@ +<?xml version='1.0' encoding='UTF-8'?> +<!-- + ~ Licensed to the Apache Software Foundation (ASF) under one + ~ or more contributor license agreements. See the NOTICE file + ~ distributed with this work for additional information + ~ regarding copyright ownership. The ASF licenses this file + ~ to you under the Apache License, Version 2.0 (the + ~ "License"); you may not use this file except in compliance + ~ with the License. You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, + ~ software distributed under the License is distributed on an + ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + ~ KIND, either express or implied. See the License for the + ~ specific language governing permissions and limitations + ~ under the License. +--> +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + + <parent> + <artifactId>maven-plugin-tools</artifactId> + <groupId>org.apache.maven.plugin-tools</groupId> + <version>3.6.5-SNAPSHOT</version> + </parent> + + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-plugin-report-plugin</artifactId> + <packaging>maven-plugin</packaging> + + <name>Maven Plugin Report Plugin</name> + <description> + The Plugin Report Plugin is used to create reports about the plugin being built. + </description> + + <prerequisites> + <maven>${mavenVersion}</maven> + </prerequisites> + + <properties> + <doxiaVersion>1.11.1</doxiaVersion> + <it.debug>true</it.debug> + </properties> + + <dependencies> + <dependency> + <groupId>org.apache.maven.plugin-tools</groupId> + <artifactId>maven-plugin-annotations</artifactId> + </dependency> + <dependency> + <groupId>org.apache.maven.plugin-tools</groupId> + <artifactId>maven-plugin-tools-api</artifactId> + </dependency> + <dependency> + <groupId>org.apache.maven.plugin-tools</groupId> + <artifactId>maven-plugin-tools-generators</artifactId> + </dependency> + + <! > Extract plugin report into its own plugin > ----------------------------------------- > > Key: MPLUGIN-423 > URL: https://issues.apache.org/jira/browse/MPLUGIN-423 > Project: Maven Plugin Tools > Issue Type: Task > Reporter: Guillaume Nodet > Priority: Major > > As noticed by [~michael-o] and [~cstamas], the current plugin carries too > much luggage. In fact, it mixes two concerns: extraction/generation of > metadata and report generation. Both aren't related, but the luggage of > reporting dependencies is always present. > Task: Move all reporting into a separate plugin and deprecate the current > goal in favor of plugin-report:report, similar to > https://maven.apache.org/surefire/maven-surefire-report-plugin/report-mojo.html. -- This message was sent by Atlassian Jira (v8.20.10#820010)