PR: MPCHECKSTYLE-53

ClassCastException when moving from 2.5 to 3.0.
Make sure xalan is used for ant's style task.


git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@375679 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
ltheussl
2006-02-07 20:01:43 +00:00
parent f96155ed60
commit 0d9eb628b7
3 changed files with 16 additions and 1 deletions

View File

@@ -232,6 +232,9 @@
<mkdir dir="${maven.gen.docs}/checkstyle"/>
<!-- Make sure xalan is used for ant's style task -->
${systemScope.setProperty('javax.xml.transform.TransformerFactory','org.apache.xalan.processor.TransformerFactoryImpl')}
<style
in="${maven.checkstyle.output.xml}"
out="${maven.checkstyle.output.summary.xml}"

View File

@@ -22,7 +22,7 @@
<pomVersion>3</pomVersion>
<id>maven-checkstyle-plugin</id>
<name>Maven Checkstyle Plugin</name>
<currentVersion>3.0</currentVersion>
<currentVersion>3.0.1-SNAPSHOT</currentVersion>
<description/>
<shortDescription>Produce Checkstyle report</shortDescription>
<url>http://maven.apache.org/maven-1.x/reference/plugins/checkstyle/</url>
@@ -180,5 +180,14 @@
<classloader>root</classloader>
</properties>
</dependency>
<dependency>
<groupId>xalan</groupId>
<artifactId>xalan</artifactId>
<version>2.4.1</version>
<url>http://xml.apache.org/xalan-j/</url>
<properties>
<classloader>root</classloader>
</properties>
</dependency>
</dependencies>
</project>

View File

@@ -24,6 +24,9 @@
<author email="evenisse@ifrance.com">Emmanuel Venisse</author>
</properties>
<body>
<release version="3.0.1" date="in SVN">
<action dev="ltheussl" type="fix" issue="MPCHECKSTYLE-53" due-to="Bernard Durfee">ClassCastException when moving from 2.5 to 3.0. Xalan is used for ant's style task.</action>
</release>
<release version="3.0" date="2006-02-05">
<action dev="ltheussl" type="update">Upgraded to checkstyle 4.1.</action>
<action dev="carlos" type="fix" issue="MPCHECKSTYLE-39">Do not assert ASF copyright in checkstyle.rss.</action>