JAVA-20617 Migrated spring-soap to JDK 17 (#14413)
This commit is contained in:
+25
-4
@@ -30,6 +30,22 @@
|
||||
<artifactId>spring-boot-starter-test</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>jakarta.xml.bind</groupId>
|
||||
<artifactId>jakarta.xml.bind-api</artifactId>
|
||||
<version>4.0.0</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.glassfish.jaxb</groupId>
|
||||
<artifactId>jaxb-runtime</artifactId>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>javax.xml.bind</groupId>
|
||||
<artifactId>jaxb-api</artifactId>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
@@ -42,7 +58,7 @@
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>jaxb2-maven-plugin</artifactId>
|
||||
<version>1.6</version>
|
||||
<version>3.1.0</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>xjc</id>
|
||||
@@ -52,8 +68,10 @@
|
||||
</execution>
|
||||
</executions>
|
||||
<configuration>
|
||||
<schemaDirectory>${project.basedir}/src/main/resources/</schemaDirectory>
|
||||
<outputDirectory>${project.basedir}/src/main/java</outputDirectory>
|
||||
<sources>
|
||||
<source>src/main/resources/countries.xsd</source>
|
||||
</sources>
|
||||
<outputDirectory>src/main/java</outputDirectory>
|
||||
<clearOutputDir>false</clearOutputDir>
|
||||
</configuration>
|
||||
</plugin>
|
||||
@@ -61,7 +79,7 @@
|
||||
<plugin>
|
||||
<groupId>org.jvnet.jaxb2.maven2</groupId>
|
||||
<artifactId>maven-jaxb2-plugin</artifactId>
|
||||
<version>0.14.0</version>
|
||||
<version>0.15.3</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<goals>
|
||||
@@ -83,4 +101,7 @@
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
<properties>
|
||||
<java.version>17</java.version>
|
||||
</properties>
|
||||
</project>
|
||||
Reference in New Issue
Block a user