This is an automated email from the ASF dual-hosted git repository.

andysch pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-project-archetype.git

commit 7f4d8be552ad6ff590765b5d22608ab65f70446a
Author: sseifert <[email protected]>
AuthorDate: Mon Aug 13 12:41:17 2018 +0200

    SLING-7798 Switch from JSR-305 annotations to JetBrains Nullable/NotNull 
annotations
---
 src/main/resources/archetype-resources/pom.xml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/main/resources/archetype-resources/pom.xml 
b/src/main/resources/archetype-resources/pom.xml
index 0e7369d..2398b46 100644
--- a/src/main/resources/archetype-resources/pom.xml
+++ b/src/main/resources/archetype-resources/pom.xml
@@ -76,7 +76,7 @@
         
<filevault-package.plugin.version>1.0.0</filevault-package.plugin.version>
 
         <sling.models.api.version>1.3.6</sling.models.api.version>
-        <jsr305.version>3.0.2</jsr305.version>
+        <jetbrains.annotations.version>16.0.2</jetbrains.annotations.version>
         <sling.settings.version>1.3.8</sling.settings.version>
         <sling.commons.osgi.version>2.4.0</sling.commons.osgi.version>
         <jackrabbit-api.version>2.14.4</jackrabbit-api.version>
@@ -347,9 +347,9 @@
             </dependency>
 
             <dependency>
-                <groupId>com.google.code.findbugs</groupId>
-                <artifactId>jsr305</artifactId>
-                <version>${jsr305.version}</version>
+                <groupId>org.jetbrains</groupId>
+                <artifactId>annotations</artifactId>
+                <version>${jetbrains.annotations.version}</version>
                 <scope>provided</scope>
             </dependency>
 

Reply via email to