psiroky commented on code in PR #223: URL: https://github.com/apache/maven-integration-testing/pull/223#discussion_r1060979196
########## core-it-support/core-it-plugins/maven-it-plugin-site/pom.xml: ########## @@ -67,6 +68,40 @@ under the License. <groupId>org.apache.maven.reporting</groupId> <artifactId>maven-reporting-exec</artifactId> <version>1.6.0</version> + <exclusions> + <exclusion> + <groupId>org.apache.maven</groupId> + <artifactId>maven-artifact</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.maven</groupId> + <artifactId>maven-core</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.maven</groupId> + <artifactId>maven-repository-metadata</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.maven</groupId> + <artifactId>maven-model-builder</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.maven</groupId> + <artifactId>maven-aether-provider</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.maven</groupId> + <artifactId>maven-model</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.maven</groupId> + <artifactId>maven-settings</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.maven</groupId> + <artifactId>maven-settings-builder</artifactId> + </exclusion> + </exclusions> Review Comment: Not 100% sure about the `exclusion` approach here. Seems to work as the plugin does not need these. I guess the alternative would be to add these as `provided` dependencies into the POM. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@maven.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org