Author: stephenc Date: Sat May 28 12:23:05 2011 New Revision: 1128621 URL: http://svn.apache.org/viewvc?rev=1128621&view=rev Log: run the tck test suite with multiple encodings as well as the platform default
Modified: maven/sandbox/trunk/plexus-utils-commons-bridge/pom.xml Modified: maven/sandbox/trunk/plexus-utils-commons-bridge/pom.xml URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plexus-utils-commons-bridge/pom.xml?rev=1128621&r1=1128620&r2=1128621&view=diff ============================================================================== --- maven/sandbox/trunk/plexus-utils-commons-bridge/pom.xml (original) +++ maven/sandbox/trunk/plexus-utils-commons-bridge/pom.xml Sat May 28 12:23:05 2011 @@ -82,6 +82,44 @@ under the License. <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.8.1</version> + <executions> + <execution> + <id>utf-8</id> + <goals> + <goal>test</goal> + </goals> + <configuration> + <systemPropertyVariables> + <file.encoding>utf-8</file.encoding> + </systemPropertyVariables> + <reportsDirectory>${project.build.directory}/surefire-reports/utf-8</reportsDirectory> + </configuration> + </execution> + <execution> + <id>Cp500</id> + <goals> + <goal>test</goal> + </goals> + <configuration> + <systemPropertyVariables> + <file.encoding>Cp500</file.encoding> + </systemPropertyVariables> + <reportsDirectory>${project.build.directory}/surefire-reports/Cp500</reportsDirectory> + </configuration> + </execution> + <execution> + <id>Cp1254</id> + <goals> + <goal>test</goal> + </goals> + <configuration> + <systemPropertyVariables> + <file.encoding>Cp1254</file.encoding> + </systemPropertyVariables> + <reportsDirectory>${project.build.directory}/surefire-reports/Cp1254</reportsDirectory> + </configuration> + </execution> + </executions> </plugin> </plugins> </pluginManagement>