composite-spring-test.
Collection of the standard spring dependencies - this one is for *testing*..
Here is the list of declaration for composite-spring-test. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>nz.ac.auckland.composite</groupId> <artifactId>composite-spring-test</artifactId> <version>5.3</version> </dependency>
If you think this Maven repository POM file listing for composite-spring-test is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Here is the content of the POM file.
<?xml version="1.0"?> <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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>nz.ac.auckland.groupapps.parent</groupId> <artifactId>parent-groupapps-central</artifactId> <version>1.1</version> </parent> <groupId>nz.ac.auckland.composite</groupId> <artifactId>composite-spring-test</artifactId> <version>5.3</version> <packaging>jar</packaging> <name>composite-spring-test</name> <description> Collection of the standard spring dependencies - this one is for *testing*. </description> <properties> <spring.version>3.2.4.RELEASE</spring.version> </properties> <scm> <url>https://github.com/uoa-group-applications/composite-spring-test</url> <connection>scm:git:https://github.com/uoa-group-applications/composite-spring-test.git</connection> <developerConnection>scm:git:git@github.com:uoa-group-applications/composite-spring-test.git</developerConnection> <tag>composite-spring-test-5.3</tag> </scm> <dependencies> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <version>${spring.version}</version> <exclusions> <exclusion> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>nz.ac.auckland.composite</groupId> <artifactId>composite-unittest</artifactId> <version>[2,)</version> </dependency> </dependencies> </project>