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 ``` Project: http://git-wip-us.apache.org/repos/asf/incubator-atlas/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-atlas/commit/0b132342 Tree: http://git-wip-us.apache.org/repos/asf/incubator-atlas/tree/0b132342 Diff: http://git-wip-us.apache.org/repos/asf/incubator-atlas/diff/0b132342 Branch: refs/remotes/origin/master Commit: 0b13234217ffec5a7f2dce62c02e106911f93855 Parents: bbf9800 Author: Aaron Niskode-Dossett <[email protected]> Authored: Tue May 12 11:39:28 2015 -0500 Committer: Aaron Niskode-Dossett <[email protected]> Committed: Tue May 12 11:39:28 2015 -0500 ---------------------------------------------------------------------- pom.xml | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-atlas/blob/0b132342/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 91a8430..9777d1e 100755 --- a/pom.xml +++ b/pom.xml @@ -945,6 +945,7 @@ <exclude>**/maven-eclipse.xml</exclude> <exclude>**/.externalToolBuilders/**</exclude> <exclude>dashboard/**</exclude> + <exclude>**/build.log</exclude> </excludes> </configuration> <executions>
