psiroky commented on code in PR #223: URL: https://github.com/apache/maven-integration-testing/pull/223#discussion_r1061572431
########## 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: Hmm, good point. Thanks! I will try to exclude all the related Maven artifacts with one exclusion. Edit: changed to just one exclusion for `org.apache.maven:*` as I think that's what we need. Excluding everything may be too much (but I haven't tested it). -- 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