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.