You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by mg...@apache.org on 2013/04/29 14:35:47 UTC

git commit: Ignore the new test files in Apache licence checks

Updated Branches:
  refs/heads/master 72ae10987 -> 0daa3e1c7


Ignore the new test files in Apache licence checks


Project: http://git-wip-us.apache.org/repos/asf/wicket/repo
Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/0daa3e1c
Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/0daa3e1c
Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/0daa3e1c

Branch: refs/heads/master
Commit: 0daa3e1c784f9ceaed371b40c81f216814bbcf2a
Parents: 72ae109
Author: Martin Tzvetanov Grigorov <mg...@apache.org>
Authored: Mon Apr 29 14:35:11 2013 +0200
Committer: Martin Tzvetanov Grigorov <mg...@apache.org>
Committed: Mon Apr 29 14:35:11 2013 +0200

----------------------------------------------------------------------
 .../core/util/license/ApacheLicenceHeaderTest.java |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/0daa3e1c/wicket-core/src/test/java/org/apache/wicket/core/util/license/ApacheLicenceHeaderTest.java
----------------------------------------------------------------------
diff --git a/wicket-core/src/test/java/org/apache/wicket/core/util/license/ApacheLicenceHeaderTest.java b/wicket-core/src/test/java/org/apache/wicket/core/util/license/ApacheLicenceHeaderTest.java
index 7caaa1f..ec30aa8 100644
--- a/wicket-core/src/test/java/org/apache/wicket/core/util/license/ApacheLicenceHeaderTest.java
+++ b/wicket-core/src/test/java/org/apache/wicket/core/util/license/ApacheLicenceHeaderTest.java
@@ -43,6 +43,7 @@ public class ApacheLicenceHeaderTest extends ApacheLicenseHeaderTestCase
 
 		// the licence header breaks the tests in IE
 		htmlIgnore.add("src/test/js/all.html");
+		htmlIgnore.add("src/test/js/amd.html");
 
 		/*
 		 * See NOTICE.txt
@@ -50,6 +51,7 @@ public class ApacheLicenceHeaderTest extends ApacheLicenseHeaderTestCase
 		xmlPrologIgnore.add("src/main/java/org/apache/wicket/util/diff");
 		// the xml prolog breaks the tests in IE
 		xmlPrologIgnore.add("src/test/js/all.html");
+		xmlPrologIgnore.add("src/test/js/amd.html");
 
 		/*
 		 * .css in test is very test specific and a license header would confuse and make it unclear
@@ -102,6 +104,7 @@ public class ApacheLicenceHeaderTest extends ApacheLicenseHeaderTestCase
 		javaScriptIgnore.add("src/main/java/org/apache/wicket/markup/html/form/upload/MultiFileUploadField.js");
 		javaScriptIgnore.add("src/main/java/org/apache/wicket/resource/jquery");
 		javaScriptIgnore.add("src/test/js/qunit/qunit.js");
+		javaScriptIgnore.add("src/test/js/amd/require.js");
 		javaScriptIgnore.add("src/test/js/data/ajax/nonWicketResponse.json"); // no way to add licence in JSON
 	}
 }