fix MPCHECKSTYLE-16 by putting back hokey classloader stuff

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@114689 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
brett 2004-02-07 23:26:22 +00:00
parent 2aef09d03b
commit c8049c7a83
2 changed files with 22 additions and 2 deletions

View File

@ -50,7 +50,6 @@
<ant:classpath>
<ant:pathelement location="${plugin.getDependencyPath('checkstyle:checkstyle')}"/>
<ant:pathelement location="${plugin.getDependencyPath('checkstyle:checkstyle-optional')}"/>
<ant:pathelement location="${plugin.getDependencyPath('checkstyle:checkstyle')}"/>
<ant:pathelement location="${plugin.getDependencyPath('antlr:antlr')}"/>
<ant:pathelement location="${plugin.getDependencyPath('regexp:regexp')}"/>
<ant:pathelement location="${plugin.getDependencyPath('commons-beanutils:commons-beanutils')}"/>
@ -86,7 +85,7 @@
<j:when test="${exception.indexOf('unable to load header file') != '-1'}">
<ant:echo>
=================================================================
= W A R N I N G =
= W A R N I N G =
=================================================================
= Your project doesn't contain a header file specified as: =
= ${maven.checkstyle.header.file}

View File

@ -95,36 +95,57 @@
<groupId>antlr</groupId>
<artifactId>antlr</artifactId>
<version>2.7.2</version>
<properties>
<classloader>root</classloader>
</properties>
</dependency>
<dependency>
<groupId>checkstyle</groupId>
<artifactId>checkstyle</artifactId>
<version>3.3</version>
<properties>
<classloader>root</classloader>
</properties>
</dependency>
<dependency>
<groupId>checkstyle</groupId>
<artifactId>checkstyle-optional</artifactId>
<version>3.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</artifactId>
<version>1.6.1</version>
<properties>
<classloader>root</classloader>
</properties>
</dependency>
<dependency>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
<version>2.1</version>
<properties>
<classloader>root</classloader>
</properties>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.0.3</version>
<properties>
<classloader>root</classloader>
</properties>
</dependency>
</dependencies>
</project>