Skip to content

Commit 26c66c5

Browse files
committed
removed wrong dependency
1 parent 47bcc93 commit 26c66c5

File tree

3 files changed

+14
-6
lines changed

3 files changed

+14
-6
lines changed

objclang/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,10 @@
5656
<groupId>ant</groupId>
5757
<artifactId>ant</artifactId>
5858
</dependency>
59+
<dependency>
60+
<groupId>com.google.guava</groupId>
61+
<artifactId>guava</artifactId>
62+
</dependency>
5963
<dependency>
6064
<groupId>com.googlecode.json-simple</groupId>
6165
<artifactId>json-simple</artifactId>

pom.xml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@
9191
<sonarQubeMinVersion>7.3</sonarQubeMinVersion>
9292

9393
<assertj.version>3.5.2</assertj.version>
94+
<guava.version>17.0</guava.version>
9495
<junit.version>4.10</junit.version>
9596
<logback.version>1.0.13</logback.version>
9697
<mockito.version>1.9.0</mockito.version>
@@ -156,16 +157,16 @@
156157
<version>${ant.version}</version>
157158
</dependency>
158159

160+
<dependency>
161+
<groupId>com.google.guava</groupId>
162+
<artifactId>guava</artifactId>
163+
<version>${guava.version}</version>
164+
</dependency>
159165
<dependency>
160166
<groupId>com.googlecode.json-simple</groupId>
161167
<artifactId>json-simple</artifactId>
162168
<version>1.1.1</version>
163169
</dependency>
164-
<dependency>
165-
<groupId>com.fasterxml.staxmate</groupId>
166-
<artifactId>staxmate</artifactId>
167-
<version>2.3.1</version>
168-
</dependency>
169170

170171
<!-- Test dependencies -->
171172
<dependency>

swiftlang/pom.xml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,10 @@
5555
<groupId>ant</groupId>
5656
<artifactId>ant</artifactId>
5757
</dependency>
58-
58+
<dependency>
59+
<groupId>com.google.guava</groupId>
60+
<artifactId>guava</artifactId>
61+
</dependency>
5962
<dependency>
6063
<groupId>com.googlecode.json-simple</groupId>
6164
<artifactId>json-simple</artifactId>

0 commit comments

Comments
 (0)