组织ID: |
com.github.stefanbirkner |
项目ID: |
system-rules |
版本: |
1.1.0 |
最后修改时间: |
2018-12-22 22:35:06 |
包类型: |
jar |
标题: |
System Rules |
描述: |
A collection of JUnit rules for testing code which uses java.lang.System. |
相关URL: |
http://stefanbirkner.github.com/system-rules/ |
大小: |
15.04KB |
|
Maven引入代码: |
<dependency>
<groupId>com.github.stefanbirkner</groupId>
<artifactId>system-rules</artifactId>
<version>1.1.0</version>
</dependency>
|
Gradle引入代码: |
com.github.stefanbirkner:system-rules:1.1.0
|
下载Jar包: |
|
POM文件内容: |
<?xml version="1.0" encoding="UTF-8"?>
<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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<groupId>com.github.stefanbirkner</groupId>
<artifactId>system-rules</artifactId>
<version>1.1.0</version>
<packaging>jar</packaging>
<name>System Rules</name>
<description>A collection of JUnit rules for testing code which uses java.lang.System.</description>
<url>http://stefanbirkner.github.com/system-rules/</url>
<inceptionYear>2011</inceptionYear>
<licenses>
<license>
<name>Common Public License Version 1.0</name>
<url>http://www.opensource.org/licenses/cpl1.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>stefanbirkner</id>
<name>Stefan Birkner</name>
<email>mail@stefan-birkner.de</email>
<url>http://www.stefan-birkner.de</url>
<timezone>+1</timezone>
</developer>
<developer>
<id>marcphilipp</id>
<name>Marc Philipp</name>
<email>mail@marcphilipp.de</email>
<url>http://marcphilipp.tumblr.com/</url>
<timezone>+1</timezone>
</developer>
<developer>
<name>Tobias M眉hl</name>
<timezone>+1</timezone>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/stefanbirkner/system-rules.git</connection>
<developerConnection>scm:git:git@github.com:stefanbirkner/system-rules.git</developerConnection>
<url>https://github.com/stefanbirkner/system-rules/</url>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.8</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.1.2</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit-dep</artifactId>
<version>[4.9,)</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>[2.0,)</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
<version>[1.2,)</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<version>[1.2,)</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>[1.9.0,)</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
org.junit.contrib.java.lang.system.ExpectedSystemExit$1.class
org.junit.contrib.java.lang.system.ProvideSecurityManager.class
org.junit.contrib.java.lang.system.ProvideSystemProperty.class
org.junit.contrib.java.lang.system.ClearSystemProperties.class
org.junit.contrib.java.lang.system.TextFromStandardInputStream.class
org.junit.contrib.java.lang.system.internal.NoExitSecurityManager.class
org.junit.contrib.java.lang.system.internal.CheckExitCalled.class
org.junit.contrib.java.lang.system.internal.PrintStreamLog.class
org.junit.contrib.java.lang.system.StandardErrorStreamLog.class
org.junit.contrib.java.lang.system.ExpectedSystemExit.class
org.junit.contrib.java.lang.system.StandardOutputStreamLog.class
org.junit.contrib.java.lang.system.RestoreSystemProperties.class
META-INF/maven/com.github.stefanbirkner/system-rules/pom.xml
META-INF/maven/com.github.stefanbirkner/system-rules/pom.properties
|
依赖Jar: |
junit-dep-[4.9,).jar
/junit/junit-dep/[4.9,)
查看junit-dep所有版本文件
commons-io-[2.0,).jar
/commons-io/commons-io/[2.0,)
查看commons-io所有版本文件
hamcrest-core-[1.2,).jar
/org.hamcrest/hamcrest-core/[1.2,)
查看hamcrest-core所有版本文件
hamcrest-library-[1.2,).jar
/org.hamcrest/hamcrest-library/[1.2,)
查看hamcrest-library所有版本文件
mockito-core-[1.9.0,).jar
/org.mockito/mockito-core/[1.9.0,)
查看mockito-core所有版本文件
|