diff --git a/pom.xml b/pom.xml
index bc69d770..6ff0adf0 100644
--- a/pom.xml
+++ b/pom.xml
@@ -59,6 +59,11 @@
compile
true
+
+ com.github.spotbugs
+ spotbugs-annotations
+ 4.2.0
+
diff --git a/src/main/java/com/github/steveice10/packetlib/Client.java b/src/main/java/com/github/steveice10/packetlib/Client.java
index 9a05244e..71759845 100644
--- a/src/main/java/com/github/steveice10/packetlib/Client.java
+++ b/src/main/java/com/github/steveice10/packetlib/Client.java
@@ -1,7 +1,7 @@
package com.github.steveice10.packetlib;
import com.github.steveice10.packetlib.packet.PacketProtocol;
-import com.sun.istack.internal.Nullable;
+import javax.annotation.Nullable;
import java.net.InetSocketAddress;
/**