feat: 适配高版本jdk(jdk11、17)
This commit is contained in:
parent
453cf8bef3
commit
26be9ce556
|
|
@ -80,6 +80,12 @@
|
|||
<artifactId>commons-lang3</artifactId>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>javax.xml.bind</groupId>
|
||||
<artifactId>jaxb-api</artifactId>
|
||||
</dependency>
|
||||
|
||||
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
|
|
|
|||
7
pom.xml
7
pom.xml
|
|
@ -53,6 +53,7 @@
|
|||
<aliyun-openservices-ons-client.version>1.8.8.1.Final</aliyun-openservices-ons-client.version>
|
||||
|
||||
<mysql.version>8.0.28</mysql.version> <!-- 覆写 spring-boot-dependencies 的依赖版本号 -->
|
||||
<jaxb-api.version>2.3.0</jaxb-api.version>
|
||||
|
||||
</properties>
|
||||
|
||||
|
|
@ -177,6 +178,12 @@
|
|||
<version>${aliyun-openservices-ons-client.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>javax.xml.bind</groupId>
|
||||
<artifactId>jaxb-api</artifactId>
|
||||
<version>${jaxb-api.version}</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
||||
</dependencyManagement>
|
||||
|
|
|
|||
Loading…
Reference in New Issue