changeset 22172:c3331cd13f06

made annotation processors explicit since they are no longer inherited
author Doug Simon <doug.simon@oracle.com>
date Sat, 18 Jul 2015 11:15:54 +0200
parents 2eff41bef7cd
children 1a7f71d13b6e
files mx.jvmci/suite.py
diffstat 1 files changed, 9 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/mx.jvmci/suite.py	Fri Jul 17 13:38:10 2015 +0200
+++ b/mx.jvmci/suite.py	Sat Jul 18 11:15:54 2015 +0200
@@ -126,6 +126,7 @@
         "JUNIT",
         "jdk.internal.jvmci.debug",
       ],
+      "annotationProcessors" : ["jdk.internal.jvmci.options.processor"],
       "checkstyle" : "com.oracle.graal.graph",
       "javaCompliance" : "1.8",
       "workingSets" : "JVMCI,Debug,Test",
@@ -239,7 +240,10 @@
         "jdk.internal.jvmci.hotspot",
       ],
       "checkstyle" : "com.oracle.graal.graph",
-      "annotationProcessors" : ["jdk.internal.jvmci.service.processor"],
+      "annotationProcessors" : [
+        "jdk.internal.jvmci.hotspotvmconfig.processor",
+        "jdk.internal.jvmci.service.processor",
+      ],
       "javaCompliance" : "1.8",
       "workingSets" : "JVMCI,HotSpot,AMD64",
     },
@@ -252,7 +256,10 @@
         "jdk.internal.jvmci.hotspot",
       ],
       "checkstyle" : "com.oracle.graal.graph",
-      "annotationProcessors" : ["jdk.internal.jvmci.service.processor"],
+      "annotationProcessors" : [
+        "jdk.internal.jvmci.hotspotvmconfig.processor",
+        "jdk.internal.jvmci.service.processor",
+      ],
       "javaCompliance" : "1.8",
       "workingSets" : "JVMCI,HotSpot,SPARC",
     },