ltheussl 0898a6ebed PR: MPCHECKSTYLE-56
Upgrade to checkstyle 4.3. Thanks to Dion Gillard.


git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@554546 13f79535-47bb-0310-9956-ffa450edef68
2007-07-09 07:33:09 +00:00

182 lines
4.9 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<!--
/*
* Copyright 2001-2004 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-->
<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
<extend>../plugins-parent/project.xml</extend>
<pomVersion>3</pomVersion>
<id>maven-checkstyle-plugin</id>
<name>Maven Checkstyle Plugin</name>
<currentVersion>3.1-SNAPSHOT</currentVersion>
<description/>
<shortDescription>Produce Checkstyle report</shortDescription>
<versions>
<version>
<id>1.1</id>
<name>1.1</name>
<tag>MAVEN_CHECKSTYLE_1_1</tag>
</version>
<version>
<id>2.0</id>
<name>2.0</name>
<tag>MAVEN_CHECKSTYLE_2_0</tag>
</version>
<version>
<id>2.2</id>
<name>2.2</name>
<tag>MAVEN_CHECKSTYLE_2_2</tag>
</version>
<version>
<id>2.3</id>
<name>2.3</name>
<tag>MAVEN_CHECKSTYLE_2_3</tag>
</version>
<version>
<id>2.4</id>
<name>2.4</name>
<tag>MAVEN_CHECKSTYLE_2_4</tag>
</version>
<version>
<id>2.4.1</id>
<name>2.4.1</name>
<tag>MAVEN_CHECKSTYLE_2_4_1</tag>
</version>
<version>
<id>2.5</id>
<name>2.5</name>
<tag>MAVEN_CHECKSTYLE_2_5</tag>
</version>
<version>
<id>3.0</id>
<name>3.0</name>
<tag>MAVEN_CHECKSTYLE_3_0</tag>
</version>
<version>
<id>3.0.1</id>
<name>3.0.1</name>
<tag>MAVEN_CHECKSTYLE_3_0_1</tag>
</version>
</versions>
<developers>
<developer>
<name>Bob McWhirter</name>
<id>werken</id>
<email>bob@werken.com</email>
<organization>The Werken Company</organization>
<roles>
<role>Java Developer</role>
</roles>
</developer>
<developer>
<name>Vincent Massol</name>
<id>vmassol</id>
<email>vmassol@pivolis.com</email>
<organization>Pivolis</organization>
<roles>
<role>Java Developer</role>
</roles>
</developer>
<developer>
<name>Emmanuel Venisse</name>
<id>evenisse</id>
<email>emmanuel@venisse.net</email>
<organization/>
<roles>
<role>Java Developer</role>
</roles>
</developer>
<developer>
<name>Jason van Zyl</name>
<id>jvanzyl</id>
<email>jason@zenplex.com</email>
<organization>Zenplex</organization>
<roles>
<role>Java Developer</role>
</roles>
</developer>
<developer>
<name>Arnaud Heritier</name>
<id>aheritier</id>
<email>aheritier@apache.org</email>
<organization>Octo Technology</organization>
<roles>
<role>Developer</role>
</roles>
<timezone>+1</timezone>
</developer>
<developer>
<name>Carlos Sanchez</name>
<id>carlos</id>
<email>carlos@apache.org</email>
<organization/>
<roles>
<role>Developer</role>
</roles>
<timezone>+1</timezone>
</developer>
</developers>
<contributors>
<contributor>
<name>Thomas Diesler</name>
<email>Thomas.Diesler@softcon.de</email>
</contributor>
</contributors>
<dependencies>
<dependency>
<groupId>antlr</groupId>
<artifactId>antlr</artifactId>
<version>2.7.6</version>
<properties>
<classloader>root</classloader>
</properties>
</dependency>
<dependency>
<groupId>checkstyle</groupId>
<artifactId>checkstyle</artifactId>
<version>4.3</version>
<properties>
<classloader>root</classloader>
</properties>
</dependency>
<dependency>
<groupId>checkstyle</groupId>
<artifactId>checkstyle-optional</artifactId>
<version>4.3</version>
<properties>
<classloader>root</classloader>
</properties>
</dependency>
<dependency>
<groupId>regexp</groupId>
<artifactId>regexp</artifactId>
<version>1.3</version>
<properties>
<classloader>root</classloader>
</properties>
</dependency>
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils-core</artifactId>
<version>1.7.0</version>
<properties>
<classloader>root</classloader>
</properties>
</dependency>
</dependencies>
</project>