From 7154d11833e084b34f41bbe884f11ce5fd5992ea Mon Sep 17 00:00:00 2001 From: lkuehne Date: Tue, 7 Jan 2003 19:35:46 +0000 Subject: [PATCH] added XML parser as a requirement - easy to forget when you're running JDK 1.4 --- docs/anttask.html | 1 + docs/cmdline.html | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/anttask.html b/docs/anttask.html index 082d35904..56e53981b 100644 --- a/docs/anttask.html +++ b/docs/anttask.html @@ -25,6 +25,7 @@ This task is included in the checkstyle distribution.

  • Jakarta Commons Beanutils classes. commons-beanutils.jar is included in the distribution.
  • Jakarta Commons Collections classes. commons-collections.jar is included in the distribution.
  • Jakarta Commons Logging classes. commons-logging.jar is included in the distribution.
  • +
  • A JAXP compliant XML parser implementation. You already have it on your system if you run ANT or JDK 1.4.
  • To use the task in a build file, you will need the following taskdef declaration:

    diff --git a/docs/cmdline.html b/docs/cmdline.html index faa2acce1..d5b7e5fce 100644 --- a/docs/cmdline.html +++ b/docs/cmdline.html @@ -21,8 +21,7 @@ This command line tool is included in the checkstyle distribution.

    Installation

    -The easiest way is to include checkstyle-all-@CHECKSTYLE_VERSION@.jar 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 checkstyle-all-@CHECKSTYLE_VERSION@.jar 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:

    1. checkstyle-@CHECKSTYLE_VERSION@.jar
    2. @@ -32,6 +31,7 @@ required to run checkstyle. Alternatively, you must include the following in the
    3. Jakarta Commons Collections classes. commons-collections.jar is included in the distribution.
    4. Jakarta Commons Logging classes. commons-logging.jar is included in the distribution.
    5. Jakarta Commons CLI (command line interface) classes. commons-cli.jar is included in the distribution.
    6. +
    7. JDK 1.3 only: A JAXP compliant XML parser implementation.