Spring WS Test.
Spring Web Services Testing package..
Here is the list of declaration for spring-ws-test. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.springframework.ws</groupId> <artifactId>spring-ws-test</artifactId> <version>2.1.3.RELEASE</version> </dependency>
If you think this Maven repository POM file listing for spring-ws-test is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The following plugins are used in the spring-ws-test-2.1.3.RELEASE.jar
Here is the content of the POM file.
<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"> <parent> <artifactId>spring-ws-parent</artifactId> <groupId>org.springframework.ws</groupId> <version>2.1.3.RELEASE</version> <relativePath>../parent/pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <groupId>org.springframework.ws</groupId> <artifactId>spring-ws-test</artifactId> <packaging>jar</packaging> <name>Spring WS Test</name> <description>Spring Web Services Testing package.</description> <build> <plugins> <plugin> <groupId>com.springsource.bundlor</groupId> <artifactId>com.springsource.bundlor.maven</artifactId> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> </archive> </configuration> </plugin> </plugins> </build> <dependencies> <!-- Spring-WS dependencies --> <dependency> <groupId>org.springframework.ws</groupId> <artifactId>spring-xml</artifactId> </dependency> <dependency> <groupId>org.springframework.ws</groupId> <artifactId>spring-ws-core</artifactId> </dependency> <!-- Other dependencies --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>xmlunit</groupId> <artifactId>xmlunit</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <scope>compile</scope> </dependency> </dependencies> </project>