Skip to content

Commit

Permalink
[dependecy] misc dependency updates
Browse files Browse the repository at this point in the history
  • Loading branch information
shoothzj authored and nobodyiam committed Mar 11, 2023
1 parent cf99a85 commit 2ea6163
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 10 deletions.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ Apollo 2.2.0
* [[Multi-Database Support] Introduce h2 postgre profile properties to let user config database config](https://github.com/apolloconfig/apollo/pull/4766)
* [[Multi-Database Support] Optimize column define case sensitivity](https://github.com/apolloconfig/apollo/pull/4776)
* [[Multi-Database Support][pg] Where clause need escape, otherwise will request postgre use lowwer case](https://github.com/apolloconfig/apollo/pull/4780)
* [Misc dependency updates](https://github.com/apolloconfig/apollo/pull/4784)

------------------
All issues and pull requests are [here](https://github.com/apolloconfig/apollo/milestone/13?closed=1)
25 changes: 15 additions & 10 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,17 @@
<apollo-java.version>2.1.0</apollo-java.version>
<spring-boot.version>2.7.9</spring-boot.version>
<spring-cloud.version>2021.0.5</spring-cloud.version>
<jaxb.version>2.3.1</jaxb.version>
<!-- sort by alphabet -->
<awaitility.version>4.2.0</awaitility.version>
<common-lang3.version>3.12.0</common-lang3.version>
<gson.version>2.10.1</gson.version>
<guava.version>31.1-jre</guava.version>
<javassist.version>3.23.1-GA</javassist.version>
<javax.activation.version>1.1.1</javax.activation.version>
<javax.mail.version>1.6.2</javax.mail.version>
<javassist.version>3.23.1-GA</javassist.version>
<jaxb.version>2.3.1</jaxb.version>
<junit.version>5.9.2</junit.version>
<nacos-discovery-api.version>1.4.0</nacos-discovery-api.version>
<common-lang3.version>3.12.0</common-lang3.version>
<!-- database driver -->
<mysql-connector-j.version>8.0.32</mysql-connector-j.version>
<postgre.version>42.5.3</postgre.version>
Expand Down Expand Up @@ -149,12 +154,12 @@
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>31.0.1-jre</version>
<version>${guava.version}</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.9</version>
<version>${gson.version}</version>
</dependency>
<dependency>
<groupId>com.mysql</groupId>
Expand Down Expand Up @@ -186,13 +191,13 @@
<dependency>
<groupId>org.awaitility</groupId>
<artifactId>awaitility</artifactId>
<version>4.0.3</version>
<version>${awaitility.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
<version>5.7.0</version>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -597,7 +602,7 @@
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.3</version>
<version>0.8.8</version>
<executions>
<execution>
<id>prepare-agent</id>
Expand All @@ -610,7 +615,7 @@
<plugin>
<groupId>org.eluder.coveralls</groupId>
<artifactId>coveralls-maven-plugin</artifactId>
<version>4.2.0</version>
<version>4.3.0</version>
</plugin>
</plugins>
</build>
Expand All @@ -628,7 +633,7 @@
<profile>
<id>nacos-discovery</id>
<properties>
<nacos.discovery.version>0.2.7</nacos.discovery.version>
<nacos.discovery.version>0.2.12</nacos.discovery.version>
<fastjson.version>1.2.83</fastjson.version>
</properties>
<dependencyManagement>
Expand Down

0 comments on commit 2ea6163

Please sign in to comment.