Make sure the rat plugin is only run once on the parent

This commit is contained in:
Guillaume Nodet 2022-10-07 08:17:04 +02:00
parent 6e8ff2d151
commit 3b98814f9e
1 changed files with 12 additions and 0 deletions

View File

@ -211,5 +211,17 @@ under the License.
</plugin> </plugin>
</plugins> </plugins>
</pluginManagement> </pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.rat</groupId>
<artifactId>apache-rat-plugin</artifactId>
<executions>
<execution>
<id>rat-check</id>
<inherited>false</inherited>
</execution>
</executions>
</plugin>
</plugins>
</build> </build>
</project> </project>