Cleaned shaded kryo2 jar.
Avoid re-shading already shaded package path
diff --git a/kryo2/pom.xml b/kryo2/pom.xml
index 788f952..d81a16a 100644
--- a/kryo2/pom.xml
+++ b/kryo2/pom.xml
@@ -28,14 +28,15 @@
         <artifactId>maven-shade-plugin</artifactId>
         <version>2.1</version>
         <configuration>
-              <relocations>
-                <relocation>
-                  <pattern>com.esotericsoftware.kryo</pattern>
-                  <shadedPattern>com.esotericsoftware.kryo2</shadedPattern>
-                  <excludes>
-                  </excludes>
-                </relocation>
-              </relocations>
+          <relocations>
+            <relocation>
+              <pattern>com.esotericsoftware.kryo</pattern>
+              <shadedPattern>com.esotericsoftware.kryo2</shadedPattern>
+              <excludes>
+                <exclude>com.esotericsoftware.kryo2*</exclude>
+              </excludes>
+            </relocation>
+          </relocations>
         </configuration>
         <executions>
           <execution>