Title: [1955] trunk/xstream-distribution/src/content/tutorial.html: Fix dependency description of two minute tutorial.
Revision
1955
Author
joehni
Date
2012-01-07 06:33:53 -0600 (Sat, 07 Jan 2012)

Log Message

Fix dependency description of two minute tutorial.

Modified Paths


Diff

Modified: trunk/xstream-distribution/src/content/tutorial.html (1954 => 1955)


--- trunk/xstream-distribution/src/content/tutorial.html	2012-01-07 12:26:28 UTC (rev 1954)
+++ trunk/xstream-distribution/src/content/tutorial.html	2012-01-07 12:33:53 UTC (rev 1955)
@@ -1,7 +1,7 @@
 <html>
 <!--
  Copyright (C) 2005, 2006 Joe Walnes.
- Copyright (C) 2006, 2007, 2011 XStream committers.
+ Copyright (C) 2006, 2007, 2011, 2012 XStream committers.
  All rights reserved.
  
  The software in this package is published under the terms of the BSD
@@ -47,12 +47,13 @@
 
 <div class="Source Java"><pre>XStream xstream = new XStream();</pre></div>
 
-    <p>You require <code>xstream-[version].jar</code> and <code>kxml2-min-[version].jar</code> in the classpath.
-    <a href="" is a very fast XML pull-parser implementation. If you do not want
-    to include this dependency, you can use a standard JAXP DOM parser or since Java 6 the integrated StAX parser instead:</p>
+    <p>You require <code>xstream-[version].jar</code>, <code>xpp3-[version].jar</code> and
+    <code>xmlpull-[version].jar</code> in the classpath.  <a href=""
+    is a very fast XML pull-parser implementation.  If you do not want to include these dependencies, you can use a standard
+    JAXP DOM parser or since Java 6 the integrated StAX parser instead:</p>
 
 <div class="Source Java"><pre>XStream xstream = new XStream(new DomDriver()); // does not require XPP3 library</pre></div>
-<div class="Source Java"><pre>XStream xstream = new XStream(new StaxDriver()); // does not require XPP3 library</pre></div>
+<div class="Source Java"><pre>XStream xstream = new XStream(new StaxDriver()); // does not require XPP3 library starting with Java 6</pre></div>
 
     <p><b>Note:</b> This class is a simple facade designed for common operations. For more flexibility you
     may choose to create your own facade that behaves differently.</p>

To unsubscribe from this list please visit:

http://xircles.codehaus.org/manage_email

Reply via email to