Polishing tutorial.

This commit is contained in:
Greg L. Turnquist
2022-11-29 13:54:13 -06:00
parent 79f094b435
commit 0200346f5d
3 changed files with 12 additions and 18 deletions

View File

@@ -17,16 +17,13 @@
<description>Demo project for Spring Web Services</description>
<properties>
<java.version>1.8</java.version>
<jaxen.version>1.1.4</jaxen.version>
<jdom.version>2.0.1</jdom.version>
<joda-time.version>2.10.6</joda-time.version>
<log4j2.version>2.15.0</log4j2.version>
<jaxen.version>1.1.6</jaxen.version>
<jdom.version>2.0.6.1</jdom.version>
<sourcesDir>${project.basedir}/target/generated-sources/axis</sourcesDir>
<classesDir>${project.basedir}/target/classes</classesDir>
<wsdl>${project.basedir}/../airline.wsdl</wsdl>
<wsdl4j.version>1.6.1</wsdl4j.version>
<xmlschema.version>2.1.0</xmlschema.version>
<wsdl4j.version>1.6.3</wsdl4j.version>
<xmlschema.version>2.2.2</xmlschema.version>
</properties>
<dependencies>
@@ -38,7 +35,7 @@
<dependency>
<groupId>org.jdom</groupId>
<artifactId>jdom</artifactId>
<artifactId>jdom2</artifactId>
<version>${jdom.version}</version>
</dependency>
@@ -77,12 +74,6 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
@@ -99,7 +90,7 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jaxb2-maven-plugin</artifactId>
<version>2.5.0</version>
<version>3.1.0</version>
<executions>
<execution>
<id>xjc</id>
@@ -111,7 +102,7 @@
<configuration>
<sources>${project.basedir}/src/main/resources/hr.xsd</sources>
<packageName>org.springframework.ws.samples.tutorial.schema</packageName>
<target>2.1</target>
<target>3.0</target>
</configuration>
</plugin>