Skip to content

Commit

Permalink
fix: upgrade to okhttp3 & configuration.
Browse files Browse the repository at this point in the history
  • Loading branch information
wl4g committed Jun 27, 2024
1 parent e2783da commit 8c7ed6c
Show file tree
Hide file tree
Showing 16 changed files with 1,191 additions and 1,430 deletions.
5 changes: 5 additions & 0 deletions bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -312,6 +312,11 @@
<artifactId>okhttp</artifactId>
<version>${okhttp.version}</version>
</dependency>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>logging-interceptor</artifactId>
<version>${okhttp.version}</version>
</dependency>
<!-- gRPC -->
<dependency>
<groupId>io.grpc</groupId>
Expand Down
12 changes: 6 additions & 6 deletions controller/pom.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<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">
<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">
<modelVersion>4.0.0</modelVersion>
<artifactId>rengine-controller</artifactId>
<name>Rengine Controller</name>
Expand Down Expand Up @@ -108,7 +109,7 @@
<artifactId>spring-kafka</artifactId>
</dependency>
<!-- FLINK client -->
<dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<!-- <version>2.8.9</version>-->
Expand All @@ -119,12 +120,11 @@
<version>1.8.5</version>
</dependency>
<dependency>
<groupId>com.squareup.okhttp</groupId>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>logging-interceptor</artifactId>
<version>2.7.5</version>
</dependency>
<dependency>
<groupId>org.threeten</groupId>
<groupId>org.threeten</groupId>
<artifactId>threetenbp</artifactId>
<version>1.5.2</version>
</dependency>
Expand Down Expand Up @@ -328,7 +328,7 @@
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<!-- see:https://maven.apache.org/plugins/maven-deploy-plugin/deploy-mojo.html#parameter-details -->
<skip>releases</skip>
<!--<skip>releases</skip>-->
</configuration>
</plugin>
<!-- see:https://help.sonatype.com/repomanager2/staging-releases/configuring-your-project-for-deployment -->
Expand Down
Loading

0 comments on commit 8c7ed6c

Please sign in to comment.