From 0200346f5da7b976d490efdd7142304dfe2c70d9 Mon Sep 17 00:00:00 2001 From: "Greg L. Turnquist" Date: Tue, 29 Nov 2022 13:54:13 -0600 Subject: [PATCH] Polishing tutorial. --- tutorial/README.adoc | 4 ++-- tutorial/pom.xml | 23 ++++++------------- .../src/main/resources/application.properties | 3 +++ 3 files changed, 12 insertions(+), 18 deletions(-) create mode 100644 tutorial/src/main/resources/application.properties diff --git a/tutorial/README.adoc b/tutorial/README.adoc index 29d637a..b650c32 100644 --- a/tutorial/README.adoc +++ b/tutorial/README.adoc @@ -1,7 +1,7 @@ = Spring Web Service Tutorial This sample contains the code for the tutorial, which can be found in the -https://projects.spring.io/spring-ws[Spring Web Services] reference documentation. +https://spring.io/projects/spring-ws[Spring Web Services] reference documentation. == Build and deploy @@ -13,4 +13,4 @@ http://localhost:8080/tutorial/holiday.wsdl == License -https://projects.spring.io/spring-ws[Spring Web Services] is released under version 2.0 of the http://www.apache.org/licenses/LICENSE-2.0[Apache License]. \ No newline at end of file +https://projects.spring.io/spring-ws[Spring Web Services] is released under version 2.0 of the http://www.apache.org/licenses/LICENSE-2.0[Apache License]. diff --git a/tutorial/pom.xml b/tutorial/pom.xml index 3a003fe..56612f7 100644 --- a/tutorial/pom.xml +++ b/tutorial/pom.xml @@ -17,16 +17,13 @@ Demo project for Spring Web Services - 1.8 - 1.1.4 - 2.0.1 - 2.10.6 - 2.15.0 + 1.1.6 + 2.0.6.1 ${project.basedir}/target/generated-sources/axis ${project.basedir}/target/classes ${project.basedir}/../airline.wsdl - 1.6.1 - 2.1.0 + 1.6.3 + 2.2.2 @@ -38,7 +35,7 @@ org.jdom - jdom + jdom2 ${jdom.version} @@ -77,12 +74,6 @@ org.springframework.boot spring-boot-starter-test test - - - org.junit.vintage - junit-vintage-engine - - @@ -99,7 +90,7 @@ org.codehaus.mojo jaxb2-maven-plugin - 2.5.0 + 3.1.0 xjc @@ -111,7 +102,7 @@ ${project.basedir}/src/main/resources/hr.xsd org.springframework.ws.samples.tutorial.schema - 2.1 + 3.0 diff --git a/tutorial/src/main/resources/application.properties b/tutorial/src/main/resources/application.properties new file mode 100644 index 0000000..87631eb --- /dev/null +++ b/tutorial/src/main/resources/application.properties @@ -0,0 +1,3 @@ +logging.level.org.springframework.ws=DEBUG +logging.level.org.springframework.xml=DEBUG +logging.level.com.mycompany.hr=DEBUG