Author: coheigea
Date: Fri Apr 1 09:23:51 2011
New Revision: 1087629
URL: http://svn.apache.org/viewvc?rev=1087629&view=rev
Log:
Fixed failing JDK1.5 systest.
Modified:
cxf/trunk/systests/ws-security/pom.xml
Modified: cxf/trunk/systests/ws-security/pom.xml
URL:
http://svn.apache.org/viewvc/cxf/trunk/systests/ws-security/pom.xml?rev=1087629&r1=1087628&r2=1087629&view=diff
==============================================================================
--- cxf/trunk/systests/ws-security/pom.xml (original)
+++ cxf/trunk/systests/ws-security/pom.xml Fri Apr 1 09:23:51 2011
@@ -190,6 +190,51 @@
</dependency>
</dependencies>
</profile>
+ <profile>
+ <id>jdk15</id>
+ <activation>
+ <jdk>1.5</jdk>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-dependency-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>create-endorsed-dir</id>
+ <phase>validate</phase>
+ <goals>
+ <goal>copy</goal>
+ </goals>
+ <configuration>
+ <artifactItems>
+ <artifactItem>
+ <groupId>xerces</groupId>
+ <artifactId>xercesImpl</artifactId>
+
<outputDirectory>${basedir}/target/endorsed</outputDirectory>
+ </artifactItem>
+ <artifactItem>
+ <groupId>xml-apis</groupId>
+ <artifactId>xml-apis</artifactId>
+ <version>1.3.04</version>
+
<outputDirectory>${basedir}/target/endorsed</outputDirectory>
+ </artifactItem>
+ </artifactItems>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+
<argLine>-Djava.endorsed.dirs=${basedir}/target/endorsed</argLine>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
</profiles>
</project>