update jdk11 适配依赖 调整到 common 包

This commit is contained in:
疯狂的狮子li 2021-10-28 09:44:57 +08:00
parent 3f0d3ffb8a
commit 160beb8e1c
2 changed files with 10 additions and 13 deletions

17
pom.xml
View File

@ -131,6 +131,13 @@
<version>${jwt.version}</version>
</dependency>
<!-- jdk11 缺失依赖 jaxb-->
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<version>${jaxb.version}</version>
</dependency>
<!-- dynamic-datasource 多数据源-->
<dependency>
<groupId>com.baomidou</groupId>
@ -323,16 +330,6 @@
</modules>
<packaging>pom</packaging>
<dependencies>
<!-- jdk11 缺失依赖 jaxb-->
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<version>${jaxb.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>

View File

@ -76,10 +76,10 @@
<artifactId>jjwt</artifactId>
</dependency>
<!-- Jaxb -->
<!-- jdk11 缺失依赖 jaxb-->
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</dependency>
<!-- redis 缓存操作 -->