springockito
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.kubek2k</groupId> <artifactId>springockito</artifactId> <version>1.0.9</version> </dependency>
<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> <groupId>org.kubek2k</groupId> <artifactId>springockito</artifactId> <version>1.0.9</version> <url>https://bitbucket.org/kubek2k/springockito</url> <description>Simple tool to create mocks in Spring environment</description> <name>Springockito</name> <parent> <groupId>org.kubek2k</groupId> <artifactId>springockito-parent</artifactId> <version>1.0.7</version> </parent> <scm> <url>https://bitbucket.org/kubek2k/springockito</url> <connection>https://bitbucket.org/kubek2k/springockito</connection> <developerConnection>scm:hg:https://bitbucket.org/kubek2k/springockito</developerConnection> </scm> <dependencies> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-expression</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-beans</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> </dependency> <!--test--> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> </dependency> <dependency> <groupId>org.easytesting</groupId> <artifactId>fest-assert</artifactId> </dependency> </dependencies> </project>