Skip to content
This repository was archived by the owner on Aug 20, 2025. It is now read-only.

Commit f97cf9a

Browse files
committed
Revert "Remove dependency conflicts"
This reverts commit fb7c75c.
1 parent fb7c75c commit f97cf9a

File tree

5 files changed

+8
-21
lines changed

5 files changed

+8
-21
lines changed

stack/corepersistence/queue/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
<maven.compiler.source>1.8</maven.compiler.source>
3838
<maven.compiler.target>1.8</maven.compiler.target>
3939
<servlet.version>3.0.1</servlet.version>
40-
<jersey.version>2.25.1</jersey.version>
40+
<jersey.version>2.21</jersey.version>
4141
<guice-bridge.version>2.4.0</guice-bridge.version>
4242
</properties>
4343

stack/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,15 +110,15 @@
110110
<jackson-version>1.9.9</jackson-version>
111111
<jackson-2-version>2.8.6</jackson-2-version>
112112
<jclouds.version>1.9.0</jclouds.version>
113-
<jersey-version>2.25.1</jersey-version>
113+
<jersey-version>2.21</jersey-version>
114114
<junit-version>4.12</junit-version>
115115
<log4j-version>1.2.16</log4j-version>
116116
<org.springframework.version>3.2.13.RELEASE</org.springframework.version>
117117
<shiro-version>1.2.4</shiro-version>
118118
<slf4j-version>1.7.2</slf4j-version>
119119
<snakeyaml-version>1.9</snakeyaml-version>
120120
<tomcat-version>7.0.64</tomcat-version>
121-
<antlr.version>3.5.2</antlr.version>
121+
<antlr.version>3.4</antlr.version>
122122
<tika.version>1.4</tika.version>
123123
<mockito.version>1.10.8</mockito.version>
124124
<io.apigee.gcm.version>1.0.1</io.apigee.gcm.version>

stack/rest/pom.xml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -269,13 +269,6 @@
269269
<groupId>org.glassfish.jersey.media</groupId>
270270
<artifactId>jersey-media-json-jackson</artifactId>
271271
<version>${jersey-version}</version>
272-
<!-- org.glassfish.jersey.media 2.25.1 uses jackson 2.8.4 -->
273-
<exclusions>
274-
<exclusion>
275-
<artifactId>*</artifactId>
276-
<groupId>com.fasterxml.jackson.jaxrs</groupId>
277-
</exclusion>
278-
</exclusions>
279272
</dependency>
280273

281274
<dependency>

stack/services/pom.xml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -213,19 +213,13 @@
213213
<dependency>
214214
<groupId>org.glassfish.jersey.core</groupId>
215215
<artifactId>jersey-client</artifactId>
216-
<version>2.25</version>
216+
<version>2.21</version>
217217
</dependency>
218218

219219
<dependency>
220220
<groupId>org.glassfish.jersey.media</groupId>
221221
<artifactId>jersey-media-json-jackson</artifactId>
222-
<version>2.25</version>
223-
<exclusions>
224-
<exclusion>
225-
<artifactId>*</artifactId>
226-
<groupId>com.fasterxml.jackson.jaxrs</groupId>
227-
</exclusion>
228-
</exclusions>
222+
<version>2.21</version>
229223
</dependency>
230224

231225
<!--<dependency>-->
@@ -275,7 +269,7 @@
275269
<dependency>
276270
<groupId>com.google.cloud</groupId>
277271
<artifactId>google-cloud-storage</artifactId>
278-
<version>1.12.0</version>
272+
<version>0.11.0-beta</version>
279273
</dependency>
280274

281275
<dependency>
@@ -485,7 +479,7 @@
485479
<dependency>
486480
<groupId>org.glassfish.jersey.connectors</groupId>
487481
<artifactId>jersey-apache-connector</artifactId>
488-
<version>2.25</version>
482+
<version>2.21</version>
489483
</dependency>
490484

491485
</dependencies>

stack/services/src/main/java/org/apache/usergrid/services/assets/data/GoogleBinaryStore.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919

2020
import com.google.api.services.storage.StorageScopes;
2121
import com.google.auth.oauth2.GoogleCredentials;
22+
import com.google.cloud.HttpTransportOptions;
2223
import com.google.cloud.TransportOptions;
2324
import com.google.cloud.WriteChannel;
24-
import com.google.cloud.http.HttpTransportOptions;
2525
import com.google.cloud.storage.*;
2626

2727
import org.apache.commons.io.FileUtils;

0 commit comments

Comments
 (0)