Spring Integration Test Support.
Here is the list of declaration for spring-integration-test. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.springframework.integration</groupId> <artifactId>spring-integration-test</artifactId> <version>4.0.0.RELEASE</version> </dependency>
If you think this Maven repository POM file listing for spring-integration-test is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:The Apache Software License, Version 2.0
URL: http://www.apache.org/licenses/LICENSE-2.0.txt.
The spring-integration-test-4.0.0.RELEASE has 6 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
Testing Mock | mockito-core 1.9.5 Mock objects library for java | 429 |
JUnit | junit 4.11 JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java. | 2031 |
Spring | spring-test 4.0.3.RELEASE Spring TestContext Framework | 8 |
Spring | spring-context 4.0.3.RELEASE Spring Context | 47 |
Testing | hamcrest-all 1.3 A self-contained hamcrest jar containing all of the sub-modules in a single artifact. | 91 |
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>org.springframework.integration</groupId> <artifactId>spring-integration-test</artifactId> <version>4.0.0.RELEASE</version> <name>Spring Integration Test Support</name> <description>Spring Integration Test Support</description> <url>https://projects.spring.io/spring-integration</url> <organization> <name>SpringIO</name> <url>https://spring.io</url> </organization> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <issueManagement> <system>Jira</system> <url>https://jira.springsource.org/browse/INT</url> </issueManagement> <scm> <connection>scm:git:scm:git:git://github.com/spring-projects/spring-integration.git</connection> <developerConnection>scm:git:scm:git:ssh://git@github.com:spring-projects/spring-integration.git</developerConnection> <url>https://github.com/spring-projects/spring-integration</url> </scm> <dependencies> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>1.9.5</version> <scope>compile</scope> <exclusions> <exclusion> <artifactId>hamcrest-core</artifactId> <groupId>org.hamcrest</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.springframework.integration</groupId> <artifactId>spring-integration-core</artifactId> <version>4.0.0.RELEASE</version> <scope>compile</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>compile</scope> <exclusions> <exclusion> <artifactId>hamcrest-core</artifactId> <groupId>org.hamcrest</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <version>4.0.3.RELEASE</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>4.0.3.RELEASE</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-all</artifactId> <version>1.3</version> <scope>compile</scope> </dependency> </dependencies> </project>