Skip to content

Commit d9b6e98

Browse files
committed
Upgraded samples to use maven
1 parent 83a95f1 commit d9b6e98

File tree

4 files changed

+3
-34
lines changed

4 files changed

+3
-34
lines changed

samples/echo/client/pom.xml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,4 @@
1414
<module>saaj</module>
1515
<module>spring-ws</module>
1616
</modules>
17-
<dependencies>
18-
<!-- Logging dependencies -->
19-
<dependency>
20-
<groupId>log4j</groupId>
21-
<artifactId>log4j</artifactId>
22-
<scope>runtime</scope>
23-
</dependency>
24-
</dependencies>
2517
</project>

samples/echo/pom.xml

Lines changed: 1 addition & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -9,32 +9,9 @@
99
<modelVersion>4.0.0</modelVersion>
1010
<artifactId>echo</artifactId>
1111
<packaging>pom</packaging>
12-
<name>Spring WS Echo</name>
12+
<name>Spring WS Echo Sample</name>
1313
<modules>
1414
<module>server</module>
1515
<module>client</module>
1616
</modules>
17-
<build>
18-
<plugins>
19-
<plugin>
20-
<groupId>org.mortbay.jetty</groupId>
21-
<artifactId>maven-jetty-plugin</artifactId>
22-
</plugin>
23-
<plugin>
24-
<groupId>org.apache.maven.plugins</groupId>
25-
<artifactId>maven-war-plugin</artifactId>
26-
<configuration>
27-
<warName>${pom.artifactId}</warName>
28-
</configuration>
29-
</plugin>
30-
</plugins>
31-
</build>
32-
<dependencies>
33-
<!-- Logging dependencies -->
34-
<dependency>
35-
<groupId>log4j</groupId>
36-
<artifactId>log4j</artifactId>
37-
<scope>runtime</scope>
38-
</dependency>
39-
</dependencies>
4017
</project>

samples/mtom/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<modelVersion>4.0.0</modelVersion>
1010
<artifactId>mtom</artifactId>
1111
<packaging>pom</packaging>
12-
<name>Spring WS MTOM</name>
12+
<name>Spring WS MTOM Sample</name>
1313
<modules>
1414
<module>server</module>
1515
<module>client</module>

samples/readme.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ Sample table of contents
1313
Except the tutorial, all of these samples consist of a separate 'server' and 'client' project.
1414
The server projects can be run using the "mvn jetty:run" command, or by using "mvn package" and deploying the resulting
1515
war archives to a Web Container.
16-
The client projects are typically command-line projects, and can by started by issuing the 'mvn exec:java' command.
16+
The client projects are typically command-line projects, and can by started by issuing the 'mvn install exec:java' command.

0 commit comments

Comments
 (0)