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:classpath>
<ant:pathelement location="${plugin.getDependencyPath('checkstyle:checkstyle')}"/> <ant:pathelement location="${plugin.getDependencyPath('checkstyle:checkstyle')}"/>
<ant:pathelement location="${plugin.getDependencyPath('checkstyle:checkstyle-optional')}"/> <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('antlr:antlr')}"/>
<ant:pathelement location="${plugin.getDependencyPath('regexp:regexp')}"/> <ant:pathelement location="${plugin.getDependencyPath('regexp:regexp')}"/>
<ant:pathelement location="${plugin.getDependencyPath('commons-beanutils:commons-beanutils')}"/> <ant:pathelement location="${plugin.getDependencyPath('commons-beanutils:commons-beanutils')}"/>

View File

@ -95,36 +95,57 @@
<groupId>antlr</groupId> <groupId>antlr</groupId>
<artifactId>antlr</artifactId> <artifactId>antlr</artifactId>
<version>2.7.2</version> <version>2.7.2</version>
<properties>
<classloader>root</classloader>
</properties>
</dependency> </dependency>
<dependency> <dependency>
<groupId>checkstyle</groupId> <groupId>checkstyle</groupId>
<artifactId>checkstyle</artifactId> <artifactId>checkstyle</artifactId>
<version>3.3</version> <version>3.3</version>
<properties>
<classloader>root</classloader>
</properties>
</dependency> </dependency>
<dependency> <dependency>
<groupId>checkstyle</groupId> <groupId>checkstyle</groupId>
<artifactId>checkstyle-optional</artifactId> <artifactId>checkstyle-optional</artifactId>
<version>3.3</version> <version>3.3</version>
<properties>
<classloader>root</classloader>
</properties>
</dependency> </dependency>
<dependency> <dependency>
<groupId>regexp</groupId> <groupId>regexp</groupId>
<artifactId>regexp</artifactId> <artifactId>regexp</artifactId>
<version>1.3</version> <version>1.3</version>
<properties>
<classloader>root</classloader>
</properties>
</dependency> </dependency>
<dependency> <dependency>
<groupId>commons-beanutils</groupId> <groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId> <artifactId>commons-beanutils</artifactId>
<version>1.6.1</version> <version>1.6.1</version>
<properties>
<classloader>root</classloader>
</properties>
</dependency> </dependency>
<dependency> <dependency>
<groupId>commons-collections</groupId> <groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId> <artifactId>commons-collections</artifactId>
<version>2.1</version> <version>2.1</version>
<properties>
<classloader>root</classloader>
</properties>
</dependency> </dependency>
<dependency> <dependency>
<groupId>commons-logging</groupId> <groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId> <artifactId>commons-logging</artifactId>
<version>1.0.3</version> <version>1.0.3</version>
<properties>
<classloader>root</classloader>
</properties>
</dependency> </dependency>
</dependencies> </dependencies>
</project> </project>