Author: niallp
Date: Thu Apr 8 15:54:04 2010
New Revision: 931981
URL: http://svn.apache.org/viewvc?rev=931981&view=rev
Log:
Get the java-1.3 profile working
Modified:
commons/proper/chain/trunk/pom.xml
Modified: commons/proper/chain/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/commons/proper/chain/trunk/pom.xml?rev=931981&r1=931980&r2=931981&view=diff
==============================================================================
--- commons/proper/chain/trunk/pom.xml (original)
+++ commons/proper/chain/trunk/pom.xml Thu Apr 8 15:54:04 2010
@@ -199,6 +199,36 @@
</dependencies>
+ <profiles>
+ <!-- Profile for running the build using JDK 1.3 -->
+ <profile>
+ <id>java-1.3</id>
+ <dependencies>
+ <dependency>
+ <groupId>xml-apis</groupId>
+ <artifactId>xml-apis</artifactId>
+ <version>2.0.2</version>
+ </dependency>
+ <dependency>
+ <groupId>xerces</groupId>
+ <artifactId>xercesImpl</artifactId>
+ <version>2.2.1</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <forkMode>always</forkMode>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
+
<reporting>
<plugins>