Skip to content

Commit 8c7ed6c

Browse files
committed
fix: upgrade to okhttp3 & configuration.
1 parent e2783da commit 8c7ed6c

File tree

16 files changed

+1191
-1430
lines changed

16 files changed

+1191
-1430
lines changed

bom/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -312,6 +312,11 @@
312312
<artifactId>okhttp</artifactId>
313313
<version>${okhttp.version}</version>
314314
</dependency>
315+
<dependency>
316+
<groupId>com.squareup.okhttp3</groupId>
317+
<artifactId>logging-interceptor</artifactId>
318+
<version>${okhttp.version}</version>
319+
</dependency>
315320
<!-- gRPC -->
316321
<dependency>
317322
<groupId>io.grpc</groupId>

controller/pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
34
<modelVersion>4.0.0</modelVersion>
45
<artifactId>rengine-controller</artifactId>
56
<name>Rengine Controller</name>
@@ -108,7 +109,7 @@
108109
<artifactId>spring-kafka</artifactId>
109110
</dependency>
110111
<!-- FLINK client -->
111-
<dependency>
112+
<dependency>
112113
<groupId>com.google.code.gson</groupId>
113114
<artifactId>gson</artifactId>
114115
<!-- <version>2.8.9</version>-->
@@ -119,12 +120,11 @@
119120
<version>1.8.5</version>
120121
</dependency>
121122
<dependency>
122-
<groupId>com.squareup.okhttp</groupId>
123+
<groupId>com.squareup.okhttp3</groupId>
123124
<artifactId>logging-interceptor</artifactId>
124-
<version>2.7.5</version>
125125
</dependency>
126126
<dependency>
127-
<groupId>org.threeten</groupId>
127+
<groupId>org.threeten</groupId>
128128
<artifactId>threetenbp</artifactId>
129129
<version>1.5.2</version>
130130
</dependency>
@@ -328,7 +328,7 @@
328328
<artifactId>maven-deploy-plugin</artifactId>
329329
<configuration>
330330
<!-- see:https://maven.apache.org/plugins/maven-deploy-plugin/deploy-mojo.html#parameter-details -->
331-
<skip>releases</skip>
331+
<!--<skip>releases</skip>-->
332332
</configuration>
333333
</plugin>
334334
<!-- see:https://help.sonatype.com/repomanager2/staging-releases/configuring-your-project-for-deployment -->

0 commit comments

Comments
 (0)