Skip to content

Commit

Permalink
TUSCANY-4058: Apply update from Andrew Potter to support IBM JDK
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/tuscany/sca-java-2.x/trunk@1347599 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
Anthony Elder committed Jun 7, 2012
1 parent 0bb2750 commit 396c722
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,8 @@ private List<String> getJarsNotInLICENSE(List<String> jars, File licenseFile) th
if (!licenseText.contains(jar)) {
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 if (System.getProperty("java.vendor").equals("IBM Corporation") && (jar.equals("bcel-5.2.jar") || jar.equals("jakarta-regexp-1.4.jar"))) {
// ignore IBM JDK specific jars.
} else {
badJars.add(jar);
}
Expand Down

0 comments on commit 396c722

Please sign in to comment.