Skip to content

Commit

Permalink
fix: javax.net.ssl.SSLHandshakeException: No appropriate protocol (#4308
Browse files Browse the repository at this point in the history
)

* fix: javax.net.ssl.SSLHandshakeException: No appropriate protocol

* Update CHANGES.md

* Apply suggestions from code review

Co-authored-by: Jason Song <[email protected]>
  • Loading branch information
Anilople and nobodyiam authored Apr 10, 2022
1 parent ba94759 commit a882f3e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,5 +50,6 @@ Apollo 2.0.0
* [Fix the deleted items display issue in text mode](https://github.com/apolloconfig/apollo/pull/4279)
* [Upgrade spring boot to 2.6.6 and spring cloud to 2021.0.1](https://github.com/apolloconfig/apollo/pull/4295)
* [Fix the apollo portal start failed issue](https://github.com/apolloconfig/apollo/pull/4298)
* [fix: javax.net.ssl.SSLHandshakeException: No appropriate protocol](https://github.com/apolloconfig/apollo/pull/4308)
------------------
All issues and pull requests are [here](https://github.com/ctripcorp/apollo/milestone/8?closed=1)
7 changes: 4 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@
<javassist.version>3.23.1-GA</javassist.version>
<nacos-discovery-api.version>1.4.0</nacos-discovery-api.version>
<common-lang3.version>3.12.0</common-lang3.version>
<mysql-connector-java.version>8.0.28</mysql-connector-java.version>
<!-- Plugins Version -->
<maven-compiler-plugin.version>3.6.0</maven-compiler-plugin.version>
<maven-surefire-plugin.version>2.19.1</maven-surefire-plugin.version>
Expand Down Expand Up @@ -168,7 +169,7 @@
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.16</version>
<version>${mysql-connector-java.version}</version>
</dependency>
<dependency>
<groupId>com.google.inject</groupId>
Expand Down Expand Up @@ -697,7 +698,7 @@
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.16</version>
<version>${mysql-connector-java.version}</version>
</dependency>
</dependencies>
<configuration>
Expand All @@ -720,7 +721,7 @@
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.16</version>
<version>${mysql-connector-java.version}</version>
</dependency>
</dependencies>
<configuration>
Expand Down

0 comments on commit a882f3e

Please sign in to comment.