Skip to content

Commit 1fc1b9b

Browse files
committed
SWS-284
1 parent cfcb7de commit 1fc1b9b

File tree

1 file changed

+36
-9
lines changed

1 file changed

+36
-9
lines changed

pom.xml

Lines changed: 36 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
34
<modelVersion>4.0.0</modelVersion>
45
<groupId>org.springframework.ws</groupId>
56
<artifactId>spring-ws</artifactId>
@@ -367,7 +368,7 @@
367368
<version>1.6.1</version>
368369
<outputDirectory>${project.build.directory}/dependency/wsdl4j/</outputDirectory>
369370
</artifactItem>
370-
<!-- WS-Security dependencies -->
371+
<!-- XWSS dependencies -->
371372
<artifactItem>
372373
<groupId>com.sun.xml.wss</groupId>
373374
<artifactId>xws-security</artifactId>
@@ -380,6 +381,31 @@
380381
<version>2.0</version>
381382
<outputDirectory>${project.build.directory}/dependency/xwss/</outputDirectory>
382383
</artifactItem>
384+
<!-- WSS4J dependencies -->
385+
<artifactItem>
386+
<groupId>org.apache.ws.security</groupId>
387+
<artifactId>wss4j</artifactId>
388+
<version>1.5.4</version>
389+
<outputDirectory>${project.build.directory}/dependency/wss4j/</outputDirectory>
390+
</artifactItem>
391+
<artifactItem>
392+
<groupId>org.apache.santuario</groupId>
393+
<artifactId>xmlsec</artifactId>
394+
<version>1.4.0</version>
395+
<outputDirectory>${project.build.directory}/dependency/wss4j/</outputDirectory>
396+
</artifactItem>
397+
<artifactItem>
398+
<groupId>bouncycastle</groupId>
399+
<artifactId>bcprov-jdk13</artifactId>
400+
<version>132</version>
401+
<outputDirectory>${project.build.directory}/dependency/wss4j/</outputDirectory>
402+
</artifactItem>
403+
<artifactItem>
404+
<groupId>opensaml</groupId>
405+
<artifactId>opensaml</artifactId>
406+
<version>1.1</version>
407+
<outputDirectory>${project.build.directory}/dependency/wss4j/</outputDirectory>
408+
</artifactItem>
383409
<!--Acegi-->
384410
<artifactItem>
385411
<groupId>org.acegisecurity</groupId>
@@ -556,19 +582,20 @@
556582
<postProcess>
557583
<copy todir="target/site/reference">
558584
<fileset dir="target/docbkx">
559-
<include name="**/*.html" />
560-
<include name="**/*.pdf" />
585+
<include name="**/*.html"/>
586+
<include name="**/*.pdf"/>
561587
</fileset>
562588
</copy>
563589
<copy todir="target/site/reference/html">
564590
<fileset dir="src/docbkx/resources">
565-
<include name="**/*.css" />
566-
<include name="**/*.png" />
567-
<include name="**/*.gif" />
568-
<include name="**/*.jpg" />
591+
<include name="**/*.css"/>
592+
<include name="**/*.png"/>
593+
<include name="**/*.gif"/>
594+
<include name="**/*.jpg"/>
569595
</fileset>
570596
</copy>
571-
<move file="target/site/reference/pdf/index.pdf" tofile="target/site/reference/pdf/spring-ws-reference.pdf" failonerror="false" />
597+
<move file="target/site/reference/pdf/index.pdf"
598+
tofile="target/site/reference/pdf/spring-ws-reference.pdf" failonerror="false"/>
572599
</postProcess>
573600
</configuration>
574601
</plugin>

0 commit comments

Comments
 (0)