Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@
<!-- dependency version start -->
<jasypt.version>1.9.2</jasypt.version>
<mybatis.starter.version>3.0.3</mybatis.starter.version>
<mysql.version>8.0.29</mysql.version>
<mysql.version>8.3.0</mysql.version>
<commons-lang3.version>3.12.0</commons-lang3.version>
<guava.version>32.0.0-jre</guava.version>
<commons-collections4.version>4.4</commons-collections4.version>
Expand Down Expand Up @@ -315,8 +315,8 @@
</dependency>

<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
<version>${mysql.version}</version>
<scope>provided</scope>
</dependency>
Expand Down
4 changes: 2 additions & 2 deletions shenyu-admin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -173,8 +173,8 @@
</dependency>

<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

mysql 8.3.0 , modify group id and artifactId?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes, mysql-connector-java driver`s latest version is 8.0.33, which still has vulnerability. new driver modified group id and artifactId

</dependency>

<dependency>
Expand Down
Loading