added XML parser as a requirement - easy to forget when you're running JDK 1.4

This commit is contained in:
lkuehne 2003-01-07 19:35:46 +00:00
parent a8c8ea7bfa
commit 7154d11833
2 changed files with 3 additions and 2 deletions

View File

@ -25,6 +25,7 @@ This task is included in the checkstyle distribution.</p>
<li>Jakarta Commons Beanutils classes. <span class="default">commons-beanutils.jar</span> is included in the distribution.</li>
<li>Jakarta Commons Collections classes. <span class="default">commons-collections.jar</span> is included in the distribution.</li>
<li>Jakarta Commons Logging classes. <span class="default">commons-logging.jar</span> is included in the distribution.</li>
<li>A JAXP compliant XML parser implementation. You already have it on your system if you run ANT or JDK 1.4.</li>
</ol>
<p>To use the task in a build file, you will need the following <code>taskdef</code> declaration:</p>

View File

@ -21,8 +21,7 @@ This command line tool is included in the checkstyle distribution.
<h2>Installation</h2>
<p>
The easiest way is to include <span class="default">checkstyle-all-@CHECKSTYLE_VERSION@.jar</span> in the classpath. This contains all the classes
required to run checkstyle. Alternatively, you must include the following in the classpath:
The easiest way is to include <span class="default">checkstyle-all-@CHECKSTYLE_VERSION@.jar</span> in the classpath. If you are running JDK 1.4 this contains all the classes required to run checkstyle (JDK 1.3 users must add a JAXP compliant XML parser implementation). Alternatively, you must include the following in the classpath:
</p>
<ol>
<li><span class="default">checkstyle-@CHECKSTYLE_VERSION@.jar</span></li>
@ -32,6 +31,7 @@ required to run checkstyle. Alternatively, you must include the following in the
<li>Jakarta Commons Collections classes. <span class="default">commons-collections.jar</span> is included in the distribution.</li>
<li>Jakarta Commons Logging classes. <span class="default">commons-logging.jar</span> is included in the distribution.</li>
<li>Jakarta Commons CLI (command line interface) classes. <span class="default">commons-cli.jar</span> is included in the distribution.</li>
<li>JDK 1.3 only: A JAXP compliant XML parser implementation.</li>
</ol>