This is an automated email from the ASF dual-hosted git repository. sseifert pushed a commit to branch feature/SLING-7798-jetbrains-annotations in repository https://gitbox.apache.org/repos/asf/sling-parent.git
commit 3c549f16425124b4e750d2b11b7d88a1beaec2e4 Author: sseifert <[email protected]> AuthorDate: Fri Aug 3 15:31:10 2018 +0200 SLING-7798 Switch from JSR-305 annotations to Jetbrains Nullable/NotNull Annotations --- pom.xml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index 80db165..6ed4a29 100644 --- a/pom.xml +++ b/pom.xml @@ -1243,10 +1243,11 @@ Bundle-Vendor: The Apache Software Foundation <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>
