update 适配 jdk11

This commit is contained in:
疯狂的狮子li
2021-06-16 23:46:26 +08:00
parent ac3f9e5f33
commit d10099d9e9
2 changed files with 35 additions and 7 deletions

View File

@ -146,12 +146,19 @@
<artifactId>redisson-spring-boot-starter</artifactId>
</dependency>
<!--jaxb-->
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</dependency>
</dependencies>
<profiles>
<profile>
<id>jdk11</id>
<dependencies>
<!--jaxb-->
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</dependency>
</dependencies>
</profile>
</profiles>
</project>