This is an automated email from the ASF dual-hosted git repository.
olli pushed a commit to branch master
in repository
https://gitbox.apache.org/repos/asf/sling-org-apache-sling-commons-clam.git
The following commit(s) were added to refs/heads/master by this push:
new bc01e9e exclude EICAR files from Rat check
bc01e9e is described below
commit bc01e9e37ff27e9087f02be39db9c8922a709cb9
Author: Oliver Lietz <[email protected]>
AuthorDate: Sat Sep 1 13:08:50 2018 +0200
exclude EICAR files from Rat check
---
pom.xml | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/pom.xml b/pom.xml
index 5c97a33..5398f85 100644
--- a/pom.xml
+++ b/pom.xml
@@ -61,6 +61,15 @@
<groupId>org.apache.servicemix.tooling</groupId>
<artifactId>depends-maven-plugin</artifactId>
</plugin>
+ <plugin>
+ <groupId>org.apache.rat</groupId>
+ <artifactId>apache-rat-plugin</artifactId>
+ <configuration>
+ <excludes combine.children="append">
+ <exclude>**/eicar/**</exclude>
+ </excludes>
+ </configuration>
+ </plugin>
</plugins>
</build>
@@ -91,15 +100,6 @@
</systemProperties>
</configuration>
</plugin>
- <plugin>
- <groupId>org.apache.rat</groupId>
- <artifactId>apache-rat-plugin</artifactId>
- <configuration>
- <excludes combine.children="append">
- <exclude>**/eicar/**</exclude>
- </excludes>
- </configuration>
- </plugin>
</plugins>
</build>
</profile>