Skip to content

Commit 3b614a9

Browse files
committed
Minor changes for 1.0
1 parent 7f96b12 commit 3b614a9

File tree

4 files changed

+13
-24
lines changed

4 files changed

+13
-24
lines changed

samples/airline/client/saaj/build.xml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,12 @@
2121
<remoteRepository refid="java.net"/>
2222
<remoteRepository refid="spring-ext"/>
2323
<dependency groupId="javax.xml.soap" artifactId="saaj-api" version="1.3"/>
24-
<dependency groupId="com.sun.xml.wss" artifactId="xws-security" version="2.0-ea2"/>
24+
<dependency groupId="com.sun.xml.wss" artifactId="xws-security" version="2.0-FCS">
25+
<exclusion groupId="javax.xml.parsers" artifactId="jaxp-api"/>
26+
<exclusion groupId="javax.xml.bind" artifactId="jaxb-api"/>
27+
<exclusion groupId="javax.xml.ws" artifactId="jaxws-api"/>
28+
<exclusion groupId="javax.xml" artifactId="jaxrpc-api"/>
29+
</dependency>
2530
<dependency groupId="com.sun.org.apache.xml.security" artifactId="xmlsec" version="2.0"/>
2631
</artifact:dependencies>
2732

samples/airline/pom.xml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,16 @@
99
<packaging>war</packaging>
1010
<name>Spring WS Airline Sample</name>
1111
<repositories>
12+
<repository>
13+
<id>java.net</id>
14+
<name>Java.net Repository for Maven2</name>
15+
<url>http://download.java.net/maven/1/</url>
16+
<layout>legacy</layout>
17+
</repository>
1218
<repository>
1319
<id>spring-ext</id>
1420
<name>Spring External Dependencies Repository</name>
15-
<url>https://svn.sourceforge.net/svnroot/springframework/repos/repo-ext/</url>
21+
<url>https://springframework.svn.sourceforge.net/svnroot/springframework/repos/repo-ext/</url>
1622
</repository>
1723
</repositories>
1824
<reporting>

samples/echo/pom.xml

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -32,26 +32,6 @@
3232
<version>1.2_Java1.3</version>
3333
<scope>test</scope>
3434
</dependency>
35-
<dependency>
36-
<groupId>org.apache.axis</groupId>
37-
<artifactId>axis-saaj</artifactId>
38-
<version>1.4</version>
39-
</dependency>
40-
<dependency>
41-
<groupId>org.apache.axis</groupId>
42-
<artifactId>axis</artifactId>
43-
<version>1.4</version>
44-
</dependency>
45-
<dependency>
46-
<groupId>org.apache.axis</groupId>
47-
<artifactId>axis-jaxrpc</artifactId>
48-
<version>1.4</version>
49-
</dependency>
50-
<dependency>
51-
<groupId>commons-discovery</groupId>
52-
<artifactId>commons-discovery</artifactId>
53-
<version>0.4</version>
54-
</dependency>
5535
<dependency>
5636
<groupId>xerces</groupId>
5737
<artifactId>xercesImpl</artifactId>

samples/pom.xml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@
4141
</dependency>
4242
<!-- The following JEE dependencies can be changed from 'runtime' to 'provided' if you're running the samples on a full-fledged J2EE application
4343
server. They are required for running the samples on a Web container such as Tomcat -->
44-
<!--
4544
<dependency>
4645
<groupId>javax.xml.soap</groupId>
4746
<artifactId>saaj-api</artifactId>
@@ -62,6 +61,5 @@
6261
<artifactId>saaj-impl</artifactId>
6362
<scope>runtime</scope>
6463
</dependency>
65-
-->
6664
</dependencies>
6765
</project>

0 commit comments

Comments
 (0)