Commit 0b132342 by Aaron Niskode-Dossett

exclude build.log from Apache Rat check

Capturing maven output in a standard way fails because apache-rat detects the log file and fails the build because it does not contain a license. This fix excludes build.log from the apache-rat check ``` mvn -X clean install > build.log ```
parent bbf98001
...@@ -945,6 +945,7 @@ ...@@ -945,6 +945,7 @@
<exclude>**/maven-eclipse.xml</exclude> <exclude>**/maven-eclipse.xml</exclude>
<exclude>**/.externalToolBuilders/**</exclude> <exclude>**/.externalToolBuilders/**</exclude>
<exclude>dashboard/**</exclude> <exclude>dashboard/**</exclude>
<exclude>**/build.log</exclude>
</excludes> </excludes>
</configuration> </configuration>
<executions> <executions>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment