Preparing release 12.0 of the Standalone Java Hints.
diff --git a/cmdline/README.md b/cmdline/README.md
index 9aa932e..146db79 100644
--- a/cmdline/README.md
+++ b/cmdline/README.md
@@ -27,7 +27,7 @@
 
 #### To Build
 
-* Apache NetBeans 11.1
+* Apache NetBeans 12.0
 * JDK 8 and JDK 11
 * bash
 * Apache ant 1.9.9 or above
@@ -42,7 +42,7 @@
 Build using:
 
 ```
-$ ant -DNETBEANS_PLATFORM=<path-to-NetBeans-11.1> -DJDK11=<path-to-JDK-11> build-and-test
+$ ant -DNETBEANS_PLATFORM=<path-to-NetBeans-12.0> -DJDK11=<path-to-JDK-11> build-and-test
 ```
 
 The built product is in tool/build/jackpot.
diff --git a/cmdline/build.xml b/cmdline/build.xml
index fd80860..6358c97 100644
--- a/cmdline/build.xml
+++ b/cmdline/build.xml
@@ -52,7 +52,7 @@
     </target>
 
     <target name="build-and-test">
-        <property name="version" value="11.1" />
+        <property name="version" value="12.0" />
         <condition property="jackpot.root" value="${basedir}" else="${basedir}/..">
             <available file="${basedir}/LICENSE" />
         </condition>
diff --git a/cmdline/maven/pom.xml b/cmdline/maven/pom.xml
index aa9182b..d1c58eb 100644
--- a/cmdline/maven/pom.xml
+++ b/cmdline/maven/pom.xml
@@ -21,7 +21,7 @@
 
   <groupId>org.apache.netbeans.modules.jackpot30</groupId>
   <artifactId>jackpot30-maven-plugin</artifactId>
-  <version>11.1</version>
+  <version>12.0</version>
   <packaging>maven-plugin</packaging>
 
   <name>Jackpot 3.0 Command Line Tool Maven Bridge</name>
diff --git a/cmdline/maven/src/test/java/org/netbeans/modules/jackpot30/maven/RunJackpot30Test.java b/cmdline/maven/src/test/java/org/netbeans/modules/jackpot30/maven/RunJackpot30Test.java
index 3808034..cb46dce 100644
--- a/cmdline/maven/src/test/java/org/netbeans/modules/jackpot30/maven/RunJackpot30Test.java
+++ b/cmdline/maven/src/test/java/org/netbeans/modules/jackpot30/maven/RunJackpot30Test.java
@@ -67,7 +67,7 @@
 
         Process p = Runtime.getRuntime().exec(new String[] {
             maven,
-            "-Djackpot.plugin.version=11.1",
+            "-Djackpot.plugin.version=12.0",
             "-q",
             "jackpot30:analyze"
         }, null, testDir);
diff --git a/cmdline/tool/scripts/pom.xml b/cmdline/tool/scripts/pom.xml
index d4d329b..2fea196 100644
--- a/cmdline/tool/scripts/pom.xml
+++ b/cmdline/tool/scripts/pom.xml
@@ -21,7 +21,7 @@
 
   <groupId>org.apache.netbeans.modules.jackpot30</groupId>
   <artifactId>jackpot30-maven-plugin</artifactId>
-  <version>11.1</version>
+  <version>12.0</version>
   <packaging>maven-plugin</packaging>
 
   <name>Jackpot 3.0 Command Line Tool</name>
diff --git a/cmdline/tool/test/unit/src/org/netbeans/modules/jackpot30/cmdline/ProcessorImplTest.java b/cmdline/tool/test/unit/src/org/netbeans/modules/jackpot30/cmdline/ProcessorImplTest.java
index 88c68fd..8f16ba4 100644
--- a/cmdline/tool/test/unit/src/org/netbeans/modules/jackpot30/cmdline/ProcessorImplTest.java
+++ b/cmdline/tool/test/unit/src/org/netbeans/modules/jackpot30/cmdline/ProcessorImplTest.java
@@ -123,7 +123,7 @@
                       "    public int size() { return 0; }\n" +
                       "}\n",
                       "src/META-INF/upgrade/test.hint",
-                      "$coll.size() == 0 :: $coll test.Test;;\n",
+                      "$coll.size() == 0 :: $coll instanceof test.Test;;\n",
                       null,
                       "-source",
                       "7",
@@ -151,7 +151,7 @@
                       "    public int size() { return 0; }\n" +
                       "}\n",
                       "src/META-INF/upgrade/test.hint",
-                      "$coll.size() == 0 :: $coll test.Test;;\n",
+                      "$coll.size() == 0 :: $coll instanceof test.Test;;\n",
                       null,
                       "-source",
                       "7",