Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,20 @@
<artifactId>java-client</artifactId>
<version>8.6.0</version>
</dependency>
<!--
Provides javax.annotation.Nullable. java-client 8.x pulled this in
transitively, but java-client 9.x/10.x dropped that transitive
dependency. Declaring it explicitly keeps the SDK compiling against all
major java-client versions (8, 9, 10). Scope is "provided": @Nullable has
CLASS retention (compile-only), so it is not needed at runtime and should
not leak onto consumers' classpath as a transitive compile dependency.
-->
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<version>3.0.2</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
Expand Down
Loading