aboutsummaryrefslogtreecommitdiffstats
path: root/build/src
diff options
context:
space:
mode:
authorAndy Clement <andrew.clement@gmail.com>2012-10-29 12:46:03 -0700
committerAndy Clement <andrew.clement@gmail.com>2012-10-29 12:46:03 -0700
commitdf1823b297d7b543c1917804ac650502bd4601b2 (patch)
tree145af00113f611598a09c5970c390fdc6f8ca716 /build/src
parent8a6608f4d5d1a2aa8aa49a0a38da66a54d53c917 (diff)
downloadaspectj-df1823b297d7b543c1917804ac650502bd4601b2.tar.gz
aspectj-df1823b297d7b543c1917804ac650502bd4601b2.zip
391123: ltw cache improvements
Diffstat (limited to 'build/src')
-rw-r--r--build/src/org/aspectj/internal/tools/ant/taskdefs/Checklics.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/build/src/org/aspectj/internal/tools/ant/taskdefs/Checklics.java b/build/src/org/aspectj/internal/tools/ant/taskdefs/Checklics.java
index 651e9fdd1..49dd39052 100644
--- a/build/src/org/aspectj/internal/tools/ant/taskdefs/Checklics.java
+++ b/build/src/org/aspectj/internal/tools/ant/taskdefs/Checklics.java
@@ -51,7 +51,7 @@ public class Checklics extends MatchingTask {
public static final String PARC_COPYRIGHT_TAG = "parc-copy";
public static final String CPL_IBM_PARC_XEROX_TAG = "cpl-ibm|parc|xerox";
public static final String CPL_IBM_PARC_XEROX_OTHERS_TAG = "cpl-ibm|parc|xerox|others";
- public static final String EPL_CPL_IBM_PARC_XEROX_OTHERS_TAG = "epl-cpl-ibm|parc|xerox|others";
+ public static final String EPL_CPL_IBM_PARC_XEROX_OTHERS_TAG = "epl-cpl-ibm|parc|xerox|vmware|others";
public static final String DEFAULT = EPL_CPL_IBM_PARC_XEROX_OTHERS_TAG;
static final Map LICENSES; // unmodifiable Map
@@ -62,6 +62,7 @@ public class Checklics extends MatchingTask {
final String PARC = "Palo Alto Research Center";
final String APACHE = "The Apache Software Foundation";
final String IBM = "IBM";
+ final String VMWARE = "VMware";
final String IBM_LONG = "International Business Machines";
final String LIC_APL = "Apache Software Foundation (http://www.apache.org/)";
final String LIC_MPL = "http://aspectj.org/MPL/";
@@ -76,7 +77,7 @@ public class Checklics extends MatchingTask {
License CPL_IBM_PARC_XEROX_OTHERS = new License(CPL_IBM_PARC_XEROX_OTHERS_TAG, LIC_CPL, new String[] { IBM_LONG, IBM, PARC,
XEROX, CONTRIBUTORS });
License EPL_CPL_IBM_PARC_XEROX_OTHERS = new License(EPL_CPL_IBM_PARC_XEROX_OTHERS_TAG, LIC_ECPL, new String[] { IBM_LONG,
- IBM, PARC, XEROX, CONTRIBUTORS });
+ IBM, PARC, XEROX, VMWARE, CONTRIBUTORS });
License CPL_IBM = new License(CPL_IBM_TAG, LIC_CPL, IBM, IBM_LONG);
License MPL_ONLY = new License(MPL_ONLY_TAG, LIC_MPL);
License MPL_PARC = new License(MPL_PARC_TAG, LIC_MPL, PARC);