elharo commented on code in PR #128: URL: https://github.com/apache/maven-jxr/pull/128#discussion_r1868126009
########## maven-jxr/pom.xml: ########## @@ -100,6 +100,22 @@ under the License. <groupId>org.eclipse.sisu</groupId> <artifactId>sisu-maven-plugin</artifactId> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-dependency-plugin</artifactId> + <executions> + <execution> + <id>analyze</id> + <goals> + <goal>analyze-only</goal> + </goals> + <configuration> + <failOnWarning>true</failOnWarning> + <ignoredDependencies>org.slf4j:slf4j-simple:*</ignoredDependencies> + </configuration> + </execution> + </executions> + </plugin> Review Comment: That doesn't buy very much since we still need to configure the ignoredDependencies on a project by project basis. That allows us to omit the goals and failOnWarning elements, but nothing else. -- 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