brett 2004/02/07 15:26:22
Modified: checkstyle plugin.jelly project.xml
Log:
fix MPCHECKSTYLE-16 by putting back hokey classloader stuff
Revision Changes Path
1.20 +1 -2 maven-plugins/checkstyle/plugin.jelly
Index: plugin.jelly
===================================================================
RCS file: /home/cvs/maven-plugins/checkstyle/plugin.jelly,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- plugin.jelly 12 Nov 2003 19:09:07 -0000 1.19
+++ plugin.jelly 7 Feb 2004 23:26:22 -0000 1.20
@@ -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}
1.32 +21 -0 maven-plugins/checkstyle/project.xml
Index: project.xml
===================================================================
RCS file: /home/cvs/maven-plugins/checkstyle/project.xml,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- project.xml 22 Dec 2003 13:31:23 -0000 1.31
+++ project.xml 7 Feb 2004 23:26:22 -0000 1.32
@@ -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>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]