diff --git a/src/docbkx/tutorial.xml b/src/docbkx/tutorial.xml
index 63721cbc..795f2d51 100644
--- a/src/docbkx/tutorial.xml
+++ b/src/docbkx/tutorial.xml
@@ -654,6 +654,38 @@ public class HolidayEndpoint extends AbstractJDomPayloadEndpoint {
code less verbose. We use XPath because it is less fragile than marshalling technologies: we don't
care for strict schema conformance, as long as we can find the dates and the name.
+
+ Because we use JDOM, we must add some dependencies to the 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
+ 1.0-m3
+
+
+ jdom
+ jdom
+ 1.0
+
+
+ jaxen
+ jaxen
+ 1.1
+
+
+ javax.xml.soap
+ saaj-api
+ 1.3
+ runtime
+
+
+ com.sun.xml.messaging.saaj
+ saaj-impl
+ 1.3
+ runtime
+]]>
Here's how we would wire up these classes in our spring-ws-servlet.xml
application context: