slawekjaranowski commented on code in PR #11637:
URL: https://github.com/apache/maven/pull/11637#discussion_r2676034010
##########
pom.xml:
##########
@@ -804,9 +804,42 @@ under the License.
</dependency>
</dependencies>
</plugin>
+ <plugin>
+ <groupId>org.apache.rat</groupId>
+ <artifactId>apache-rat-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>rat-check</id>
+ <configuration>
+ <excludes>
+ <exclude>Jenkinsfile</exclude>
+ <exclude>**/.gitattributes</exclude>
+ <exclude>src/main/resources/META-INF/services/**</exclude>
+ <exclude>src/test/resources*/**</exclude>
+ <exclude>src/test/projects/**</exclude>
+ <exclude>src/test/remote-repo/**</exclude>
+ <exclude>its/**</exclude>
+ <exclude>**/*.odg</exclude>
+ <exclude>**/*.svg</exclude>
+ <exclude>.asf.yaml</exclude>
+ <exclude>.mvn/**</exclude>
+ <exclude>.jbang/**</exclude>
+ <!--
+ ! Excluded the license files itself cause they do not have
a license of themselves.
+ -->
+ <exclude>src/main/appended-resources/licenses/**</exclude>
+ </excludes>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
</plugins>
</pluginManagement>
<plugins>
+ <plugin>
+ <groupId>org.apache.rat</groupId>
+ <artifactId>apache-rat-plugin</artifactId>
+ </plugin>
Review Comment:
this should be inherited from parent 🤔
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]