This is an automated email from the ASF dual-hosted git repository. rec pushed a commit to branch refactoring/57-Execute-rat-by-default in repository https://gitbox.apache.org/repos/asf/uima-parent-pom.git
commit ebe646be817540028ff50365dbafcc254f0589b7 Author: Richard Eckart de Castilho <[email protected]> AuthorDate: Fri Aug 11 13:06:52 2023 +0200 Issue #57: Execute rat by default - Remove rat execution from release profile - Activate rat profile by default (unless deactivation property has been set) --- pom.xml | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/pom.xml b/pom.xml index 99b6577..c323433 100644 --- a/pom.xml +++ b/pom.xml @@ -764,16 +764,6 @@ </execution> </executions> </plugin> - - <plugin> - <groupId>org.apache.rat</groupId> - <artifactId>apache-rat-plugin</artifactId> - <executions> - <execution> - <id>default-cli</id> - </execution> - </executions> - </plugin> <!-- to fix up any generated Javadocs to have consistent line ends in html files --> <!-- runs in several phases after package --> @@ -965,6 +955,11 @@ <!-- *************************************************** --> <profile> <id>run-rat-report</id> + <activation> + <property> + <name>!disable-rat</name> + </property> + </activation> <build> <plugins>
