JAVA-27537 Upgrade spring-soap to Spring Boot 3 (#15438)
This commit is contained in:
parent
a5b9e8fde2
commit
11417d3c0d
|
@ -9,9 +9,9 @@
|
||||||
|
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>com.baeldung</groupId>
|
<groupId>com.baeldung</groupId>
|
||||||
<artifactId>parent-boot-2</artifactId>
|
<artifactId>parent-boot-3</artifactId>
|
||||||
<version>0.0.1-SNAPSHOT</version>
|
<version>0.0.1-SNAPSHOT</version>
|
||||||
<relativePath>../parent-boot-2</relativePath>
|
<relativePath>../parent-boot-3</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
@ -42,10 +42,6 @@
|
||||||
<artifactId>jaxb-runtime</artifactId>
|
<artifactId>jaxb-runtime</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
|
||||||
<groupId>javax.xml.bind</groupId>
|
|
||||||
<artifactId>jaxb-api</artifactId>
|
|
||||||
</dependency>
|
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
|
@ -77,9 +73,9 @@
|
||||||
</plugin>
|
</plugin>
|
||||||
<!-- end::xsd[] -->
|
<!-- end::xsd[] -->
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.jvnet.jaxb2.maven2</groupId>
|
<groupId>org.jvnet.jaxb</groupId>
|
||||||
<artifactId>maven-jaxb2-plugin</artifactId>
|
<artifactId>jaxb-maven-plugin</artifactId>
|
||||||
<version>${maven-jaxb2-plugin.version}</version>
|
<version>${jaxb-maven-plugin.version}</version>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<goals>
|
<goals>
|
||||||
|
@ -103,7 +99,7 @@
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<jakarta.xml.bind-api.version>4.0.0</jakarta.xml.bind-api.version>
|
<jakarta.xml.bind-api.version>4.0.0</jakarta.xml.bind-api.version>
|
||||||
|
<jaxb-maven-plugin.version>4.0.0</jaxb-maven-plugin.version>
|
||||||
<jaxb2-maven-plugin.version>3.1.0</jaxb2-maven-plugin.version>
|
<jaxb2-maven-plugin.version>3.1.0</jaxb2-maven-plugin.version>
|
||||||
<maven-jaxb2-plugin.version>0.15.3</maven-jaxb2-plugin.version>
|
|
||||||
</properties>
|
</properties>
|
||||||
</project>
|
</project>
|
|
@ -3,7 +3,7 @@ package com.baeldung.springsoap;
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
import javax.annotation.PostConstruct;
|
import jakarta.annotation.PostConstruct;
|
||||||
|
|
||||||
import org.springframework.stereotype.Component;
|
import org.springframework.stereotype.Component;
|
||||||
import org.springframework.util.Assert;
|
import org.springframework.util.Assert;
|
||||||
|
|
Loading…
Reference in New Issue