组织ID: |
org.itsallcode |
项目ID: |
junit5-system-extensions |
版本: |
1.1.0 |
最后修改时间: |
2020-01-08 08:03:52 |
包类型: |
jar |
标题: |
JUnit5 System Extensions |
描述: |
These extensions help testing behavior that is related to `System.x` calls like `exit(int). |
相关URL: |
https://github.com/itsallcode/junit5-system-extensions |
大小: |
13.88KB |
|
Maven引入代码: |
<dependency>
<groupId>org.itsallcode</groupId>
<artifactId>junit5-system-extensions</artifactId>
<version>1.1.0</version>
</dependency>
|
Gradle引入代码: |
org.itsallcode:junit5-system-extensions:1.1.0
|
下载Jar包: |
|
POM文件内容: |
<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.itsallcode</groupId>
<artifactId>junit5-system-extensions</artifactId>
<version>1.1.0</version>
<name>JUnit5 System Extensions</name>
<description>These extensions help testing behavior that is related to `System.x` calls like `exit(int).</description>
<url>https://github.com/itsallcode/junit5-system-extensions</url>
<licenses>
<license>
<name>Eclipse Public License v2.0</name>
<url>http://www.eclipse.org/legal/epl-v20.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>redcatbear</id>
<url>https://github.com/redcatbear</url>
<organization>itsallcode</organization>
<organizationUrl>https://github.com/itsallcode</organizationUrl>
</developer>
<developer>
<id>kaklakariada</id>
<url>https://github.com/kaklakariada</url>
<organization>itsallcode</organization>
<organizationUrl>https://github.com/itsallcode</organizationUrl>
<email>github@chp1.net</email>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/itsallcode/junit5-system-extensions.git</connection>
<developerConnection>scm:git:https://github.com/itsallcode/junit5-system-extensions.git</developerConnection>
<url>https://github.com/itsallcode/junit5-system-extensions</url>
</scm>
<properties>
<java.version>1.8</java.version>
<junit.version>5.3.1</junit.version>
<junit.platform.version>1.3.1</junit.platform.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<distributionManagement>
<repository>
<id>itsallcode-maven-repo</id>
<url>https://api.bintray.com/maven/itsallcode/itsallcode/junit5-system-extensions/;publish=1</url>
</repository>
</distributionManagement>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit.version}</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-launcher</artifactId>
<version>${junit.platform.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>3.2.4</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<source>8</source>
<charset>UTF-8</charset>
<doclint></doclint>
<serialwarn>true</serialwarn>
<failOnError>true</failOnError>
<failOnWarnings>true</failOnWarnings>
</configuration>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.2</version>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>test</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.1</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>1.16</version>
<configuration>
<verbose>false</verbose>
<detail>true</detail>
<licenseName>epl_v2</licenseName><!-- same license as JUnit5 -->
<licenseResolver>${project.baseUri}/src/license</licenseResolver>
<organizationName>itsallcode.org</organizationName>
<inceptionYear>2018</inceptionYear>
<excludes>
<exclude>
test/resources/specobject/*.xml
</exclude>
<exclude>**/*.css</exclude>
<exclude>**/*.html</exclude>
<exclude>**/*.md</exclude>
<exclude>**/*.properties</exclude>
<exclude>**/*.ftl</exclude>
</excludes>
<failOnMissingHeader>true</failOnMissingHeader>
<failIfWarning>true</failIfWarning>
<failOnNotUptodateHeader>true</failOnNotUptodateHeader>
<addJavaLicenseAfterPackage>true</addJavaLicenseAfterPackage>
<encoding>UTF-8</encoding>
<dryRun>false</dryRun>
</configuration>
<executions>
<execution>
<id>check-file-header</id>
<goals>
<goal>check-file-header</goal>
</goals>
<phase>validate</phase>
</execution>
<execution>
<id>add-third-party-licenses</id>
<goals>
<goal>add-third-party</goal>
<goal>third-party-report</goal>
<goal>download-licenses</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<inceptionYear>2018</inceptionYear>
<organization>
<name>itsallcode.org</name>
<url>https://blog.itsallcode.org</url>
</organization>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
org.itsallcode.io.Capturable.class
org.itsallcode.io.CapturingOutputStream.class
org.itsallcode.junit.sysextensions.AbstractSystemOutputGuard.class
org.itsallcode.junit.sysextensions.AssertExit.class
org.itsallcode.junit.sysextensions.ExitGuard.class
org.itsallcode.junit.sysextensions.security.ExitGuardSecurityManager.class
org.itsallcode.junit.sysextensions.security.ExitTrapException.class
org.itsallcode.junit.sysextensions.SystemErrGuard$SysErr.class
org.itsallcode.junit.sysextensions.SystemErrGuard.class
org.itsallcode.junit.sysextensions.SystemOutGuard$SysOut.class
org.itsallcode.junit.sysextensions.SystemOutGuard.class
THIRD-PARTY.txt
META-INF/maven/org.itsallcode/junit5-system-extensions/pom.xml
META-INF/maven/org.itsallcode/junit5-system-extensions/pom.properties
|
依赖Jar: |
junit-jupiter-api-${junit.version}.jar
/org.junit.jupiter/junit-jupiter-api/${junit.version}
查看junit-jupiter-api所有版本文件
junit-jupiter-engine-${junit.version}.jar
/org.junit.jupiter/junit-jupiter-engine/${junit.version}
查看junit-jupiter-engine所有版本文件
junit-platform-launcher-${junit.platform.version}.jar
/org.junit.platform/junit-platform-launcher/${junit.platform.version}
查看junit-platform-launcher所有版本文件
mockito-core-3.2.4.jar
/org.mockito/mockito-core/3.2.4
查看mockito-core所有版本文件
|