diff options
author | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2010-06-15 11:50:07 +0000 |
---|---|---|
committer | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2010-06-15 11:50:07 +0000 |
commit | aa7a492dafebebba501cc26c205e0fd1c47440cb (patch) | |
tree | 31c82e125e08e0a767c68d8fe1c14e0845a89c77 | |
parent | d33efd34dfa4216a46dbec3c973a017630f88d07 (diff) |
Update to ignore itests and samples (how was this ever working?)
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@954841 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | sca-java-2.x/trunk/itest/distribution/legal-checks/src/test/java/itest/JarsInLICENSETestCase.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sca-java-2.x/trunk/itest/distribution/legal-checks/src/test/java/itest/JarsInLICENSETestCase.java b/sca-java-2.x/trunk/itest/distribution/legal-checks/src/test/java/itest/JarsInLICENSETestCase.java index 3564128c8d..2fdbf62353 100644 --- a/sca-java-2.x/trunk/itest/distribution/legal-checks/src/test/java/itest/JarsInLICENSETestCase.java +++ b/sca-java-2.x/trunk/itest/distribution/legal-checks/src/test/java/itest/JarsInLICENSETestCase.java @@ -101,7 +101,7 @@ public class JarsInLICENSETestCase { String licenseText = readLICENSE(licenseFile); for (String jar : jars) { if (!licenseText.contains(jar)) { - if (jar.startsWith("tuscany-")) { + if (jar.startsWith("tuscany-") || jar.startsWith("sample-") || jar.startsWith("test-") || jar.startsWith("itest-")) { // ignore tuscany jars as they're not mentioned in the LICENSE file } else { badJars.add(jar); |