SLING-7798 Switch from JSR-305 annotations to Jetbrains Nullable/NotNull Annotations
diff --git a/pom.xml b/pom.xml
index 80db165..6ed4a29 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1243,10 +1243,11 @@
                 <scope>provided</scope>
             </dependency>
 
+            <!-- Jetbrains annotations for null-analysis (SLING-7798) -->
             <dependency>
-                <groupId>com.google.code.findbugs</groupId>
-                <artifactId>jsr305</artifactId>
-                <version>3.0.0</version>
+                <groupId>org.jetbrains</groupId>
+                <artifactId>annotations</artifactId>
+                <version>16.0.2</version>                
                 <scope>provided</scope>
             </dependency>