| 组织ID: |
org.jmock |
| 项目ID: |
jmock-junit3 |
| 版本: |
2.8.4 |
| 最后修改时间: |
2020-02-27 14:37:10 |
| 包类型: |
jar |
| 大小: |
6.48KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>org.jmock</groupId>
<artifactId>jmock-junit3</artifactId>
<version>2.8.4</version>
</dependency>
|
| Gradle引入代码: |
org.jmock:jmock-junit3:2.8.4
|
| 下载Jar包: |
|
| POM文件内容: |
<?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>org.jmock</groupId>
<artifactId>jmock-parent</artifactId>
<version>2.8.4</version>
</parent>
<artifactId>jmock-junit3</artifactId>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<!-- Because thats what we're regressing against -->
<version>3.8.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.jmock</groupId>
<artifactId>jmock</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.5</version>
<executions>
<!-- To allow jmock-junit4 tests access to AssertThat -->
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
org.jmock.integration.junit3.JUnit3ErrorTranslator.class
org.jmock.integration.junit3.MockObjectTestCase$1.class
org.jmock.integration.junit3.JUnit3Mockery.class
org.jmock.integration.junit3.MockObjectTestCase.class
org.jmock.integration.junit3.VerifyingTestCase.class
META-INF/maven/org.jmock/jmock-junit3/pom.xml
META-INF/maven/org.jmock/jmock-junit3/pom.properties
|
| 依赖Jar: |
junit-3.8.1.jar
/junit/junit/3.8.1
查看junit所有版本文件
jmock-${project.version}.jar
/org.jmock/jmock/${project.version}
查看jmock所有版本文件
|