Upgrading to NetBeans 11.0.

diff --git a/.travis.yml b/.travis.yml
index 3160af1..07f63b3 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -18,7 +18,7 @@
 jdk:
   - openjdk11
 before_script:
-  - wget 'http://www.apache.org/dyn/closer.lua?action=download&filename=incubator/netbeans/incubating-netbeans/incubating-10.0/incubating-netbeans-10.0-bin.zip' -O /tmp/incubating-netbeans-10.0-bin.zip
+  - wget 'http://www.apache.org/dyn/closer.lua?action=download&filename=incubator/netbeans/incubating-netbeans/incubating-11.0/incubating-netbeans-11.0-bin.zip' -O /tmp/incubating-netbeans-10.0-bin.zip
   - (cd $HOME; unzip /tmp/incubating-netbeans-10.0-bin.zip)
   - unset _JAVA_OPTIONS
 script:
diff --git a/cmdline/README.md b/cmdline/README.md
index 9149e4b..cd1c43c 100644
--- a/cmdline/README.md
+++ b/cmdline/README.md
@@ -19,7 +19,7 @@
 
 -->
 
-# Apache NetBeans Jackpot
+# Apache NetBeans Standalone Java Hints
 
 This tool allows to run NetBeans Java code checker without the NetBeans IDE. This includes running the custom Java hints specified in META-INF/upgrade/*.hint.
 
@@ -27,7 +27,7 @@
 
 #### To Build
 
-* Apache NetBeans 10.0
+* Apache NetBeans 11.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-10.0> -DJDK11=<path-to-JDK-11> build-and-test
+$ ant -DNETBEANS_PLATFORM=<path-to-NetBeans-11.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 60e9d18..e27109b 100644
--- a/cmdline/build.xml
+++ b/cmdline/build.xml
@@ -44,7 +44,7 @@
     </target>
 
     <target name="build-and-test">
-        <property name="version" value="10.0" />
+        <property name="version" value="11.0" />
         <condition property="jackpot.root" value="${basedir}" else="${basedir}/..">
             <available file="${basedir}/LICENSE" />
         </condition>
@@ -96,9 +96,9 @@
         </exec>
         <zip destfile="build/.m2.zip">
             <zipfileset dir="${build.maven.repo}/" />
-            <zipfileset dir="tool/scripts" includes="LICENSE-bin-tool.txt" fullpath="META-INF/LICENSE" />
-            <zipfileset dir="tool/scripts" includes="NOTICE-bin-tool.txt" fullpath="META-INF/NOTICE" />
-            <zipfileset dir="${jackpot.root}" includes="DISCLAIMER" fullpath="META-INF/DISCLAIMER" />
+            <zipfileset dir="tool/scripts" includes="LICENSE-bin-tool.txt" fullpath="LICENSE" />
+            <zipfileset dir="tool/scripts" includes="NOTICE-bin-tool.txt" fullpath="NOTICE" />
+            <zipfileset dir="${jackpot.root}" includes="DISCLAIMER" fullpath="DISCLAIMER" />
         </zip>
     </target>
 
diff --git a/cmdline/maven/pom.xml b/cmdline/maven/pom.xml
index 0fe862e..4628e30 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>10.0</version>
+  <version>11.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 ab8bd81..14a05a3 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=10.0",
+            "-Djackpot.plugin.version=11.0",
             "-q",
             "jackpot30:analyze"
         }, null, testDir);