Skip to content

Commit 108ea7a

Browse files
authored
Merge pull request #71 from meltsufin/fix_dependencies
Fix findbugs and guava dependencies
2 parents f60a617 + fb48b20 commit 108ea7a

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

core/pom.xml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,29 @@
2121
<groupId>com.google.apis</groupId>
2222
<artifactId>google-api-services-sqladmin</artifactId>
2323
<version>v1beta4-rev25-1.22.0</version>
24+
<exclusions>
25+
<exclusion>
26+
<groupId>com.google.code.findbugs</groupId>
27+
<artifactId>jsr305</artifactId>
28+
</exclusion>
29+
<exclusion>
30+
<groupId>com.google.guava</groupId>
31+
<artifactId>guava-jdk5</artifactId>
32+
</exclusion>
33+
</exclusions>
34+
</dependency>
35+
36+
<dependency>
37+
<groupId>com.google.guava</groupId>
38+
<artifactId>guava</artifactId>
39+
<version>20.0</version>
40+
</dependency>
41+
42+
<dependency>
43+
<groupId>com.google.code.findbugs</groupId>
44+
<artifactId>jsr305</artifactId>
45+
<version>3.0.2</version>
46+
<scope>provided</scope>
2447
</dependency>
2548

2649
<dependency>

0 commit comments

Comments
 (0)