From 9f2695dcaefdc41ddcbe194633daea389bc48111 Mon Sep 17 00:00:00 2001 From: Arjen Poutsma Date: Tue, 29 Mar 2011 10:32:18 +0000 Subject: [PATCH] Replaced version number with eval --- src/docbkx/tutorial.xml | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/src/docbkx/tutorial.xml b/src/docbkx/tutorial.xml index fbd6e0c1..cb0e7572 100644 --- a/src/docbkx/tutorial.xml +++ b/src/docbkx/tutorial.xml @@ -674,23 +674,23 @@ public class HolidayEndpoint { Because we use JDOM, we must add some dependencies to the Maven pom.xml, which is in the root of our project directory. Here is the relevant section of the POM: - - - org.springframework.ws - spring-ws-core - 2.0.0-RC2 - - - jdom - jdom - 1.0 - - - jaxen - jaxen - 1.1 - -]]> + <dependencies> + <dependency> + <groupId>org.springframework.ws</groupId> + <artifactId>spring-ws-core</artifactId> + <version></version> + </dependency> + <dependency> + <groupId>jdom</groupId> + <artifactId>jdom</artifactId> + <version>1.0</version> + </dependency> + <dependency> + <groupId>jaxen</groupId> + <artifactId>jaxen</artifactId> + <version>1.1</version> + </dependency> +</dependencies> Here is how we would configure these classes in our spring-ws-servlet.xml Spring XML configuration file, by using component scanning.