Go to file
Oliver Burn 1a99a22d57 Seen the error of my ways. The "mvn package" command should be default just build the Checkstyle JAR as this is what will be released in the Maven Central Repository.
To generate the distributions, use the command "mvn -Pdistro package". This activates the distro profile that will generate the distributions.
2010-09-23 23:50:15 +00:00
config A near complete build system now. It generates the assemblies for distribution. 2010-09-17 05:41:38 +00:00
contrib Patch #2815734 from Rolf Wojtech 2009-12-13 09:18:21 +00:00
src Made the method protected so that it is accessible to subclasses. Requested by Steve McKay. 2010-09-23 04:40:47 +00:00
AllCheckstyleTests.launch remove unneeded testsuite runners. Eclipse support makes this not required anymore. 2010-02-13 04:06:49 +00:00
LICENSE
LICENSE.apache20
README upgraded to commons-cli 1.1 (ASL 2.0) 2008-04-27 13:18:27 +00:00
RIGHTS.antlr
Specific Checkstyle Test.launch Enhanced JavadocType check to handle and report on unknown 2010-02-13 11:57:53 +00:00
ant-phase-compile.xml Hooks for the compile and verify phase. Run Checkstyle on itself as part of the verification process. 2010-09-16 02:40:06 +00:00
ant-phase-package.xml Unfortunately for now, not going to use the com.puppycrawl.tools.checkstyle.doclets.CheckDocsDoclet to generate the availablechecks.xml file. To add support will complicate the Maven build as would need to use custom ANT "hooks" in the "pre-site" and "clean" phases to generate (and delete) the availablechecks.xml into the src/xdocs directory. This is because (it appears) that the site plug-in does not support generating the input xdocs. 2010-09-20 07:14:44 +00:00
build.xml Strip the ANT build.xml back to purely testing tasks. It requires that the 'mvn package' target has been run to generate the package. 2010-09-21 07:04:35 +00:00
checkstyle-cmd.launch an Eclipse launch configuration I use to run the command line version. 2008-04-20 12:05:00 +00:00
checkstyle_checks.xml upgrade to latest version 2010-09-14 06:08:45 +00:00
import-control.xml Apply patch #2783226 that uses FileText as an implementation for 2010-06-28 13:02:13 +00:00
java.header A new year 2010-02-13 02:57:15 +00:00
pom.xml Seen the error of my ways. The "mvn package" command should be default just build the Checkstyle JAR as this is what will be released in the Maven Central Repository. 2010-09-23 23:50:15 +00:00
sun_checks.xml Applied patch from lkoe to fix bug #2707473 and added the GenericWhitespace check. 2009-03-26 21:50:55 +00:00
suppressions.xml use immutablemap where possible 2009-04-27 12:35:19 +00:00

README

CHECKSTYLE
==========

This directory contains the distribution for checkstyle. It is a tool for
checking Java source code for adherence to a set of rules.

The latest version can be found at http://checkstyle.sourceforge.net

Documentation is available in HTML format, in the docs/ directory.

Licensing
=========

This software is licensed under the terms in the file named "LICENSE" in this
directory.

The software uses the ANTLR package (http://www.antlr.org). Its license terms
are in the file named "RIGHTS.antlr" in this directory.

This product includes software developed by
The Apache Software Foundation (http://www.apache.org/).

The software uses the Cli, Logging and Beanutils packages from the
Apache Commons project (http://commons.apache.org/). The license terms
of these packages are in the file named "LICENSE.apache20" in this
directory.

The software uses the Google Collections Library
(http://code.google.com/p/google-collections/). The license terms of
these packages are in the file named "LICENSE.apache20" in this
directory.


Feedback
========

Please send any feedback to checkstyle-user@lists.sourceforge.net.

Bugs should be reported to the checkstyle bugtracker at
http://sourceforge.net/tracker/?atid=397078&group_id=29721&func=browse


Thanks for trying out checkstyle!

Oliver Burn