组织ID: |
org.apache.maven.surefire |
项目ID: |
surefire-junit-platform |
版本: |
2.22.1 |
最后修改时间: |
2018-10-12 17:51:47 |
包类型: |
jar |
标题: |
SureFire JUnit Platform Runner |
描述: |
SureFire JUnit Platform Runner |
大小: |
64.37KB |
|
Maven引入代码: |
<dependency>
<groupId>org.apache.maven.surefire</groupId>
<artifactId>surefire-junit-platform</artifactId>
<version>2.22.1</version>
</dependency>
|
Gradle引入代码: |
org.apache.maven.surefire:surefire-junit-platform:2.22.1
|
下载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">
<parent>
<artifactId>surefire-providers</artifactId>
<groupId>org.apache.maven.surefire</groupId>
<version>2.22.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>surefire-junit-platform</artifactId>
<name>SureFire JUnit Platform Runner</name>
<description>SureFire JUnit Platform Runner</description>
<contributors>
<contributor>
<name>Konstantin Lutovich</name>
<roles>
<role>Contributed to the original provider implementation</role>
</roles>
</contributor>
<contributor>
<name>Shintaro Katafuchi</name>
<roles>
<role>Contributed to the original provider implementation</role>
</roles>
</contributor>
<contributor>
<name>Sam Brannen</name>
<roles>
<role>Contributed to the original provider implementation</role>
</roles>
</contributor>
<contributor>
<name>Stefan Bechtold</name>
<roles>
<role>Contributed to the original provider implementation</role>
</roles>
</contributor>
<contributor>
<name>Marc Philipp</name>
<roles>
<role>Contributed to the original provider implementation</role>
</roles>
</contributor>
<contributor>
<name>Matthias Merdes</name>
<roles>
<role>Contributed to the original provider implementation</role>
</roles>
</contributor>
<contributor>
<name>Johannes Link</name>
<roles>
<role>Contributed to the original provider implementation</role>
</roles>
</contributor>
</contributors>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>animal-sniffer-maven-plugin</artifactId>
<executions>
<execution>
<id>signature-check</id>
<goals>
<goal>check</goal>
</goals>
<configuration>
<signature>
<groupId>org.codehaus.mojo.signature</groupId>
<artifactId>java18</artifactId>
<version>1.0</version>
</signature>
<excludeDependencies>
<param>org.junit.platform:junit-platform-commons</param>
</excludeDependencies>
<ignores>
<param>org.junit.platform.commons.*</param>
</ignores>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<jvm>${java.home}/bin/java</jvm>
</configuration>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<minimizeJar>true</minimizeJar>
<artifactSet>
<includes>
<include>org.apache.maven.surefire:common-java5</include>
</includes>
</artifactSet>
<relocations>
<relocation>
<pattern>javax.annotation</pattern>
<shadedPattern>org.apache.maven.surefire.javax.annotation</shadedPattern>
</relocation>
<relocation>
<pattern>org.apache.maven.shared</pattern>
<shadedPattern>org.apache.maven.surefire.org.apache.maven.shared</shadedPattern>
</relocation>
</relocations>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-launcher</artifactId>
<version>1.3.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.3.1</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>junit-jupiter-api</artifactId>
<groupId>org.junit.jupiter</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>2.21.0</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>hamcrest-core</artifactId>
<groupId>org.hamcrest</groupId>
</exclusion>
<exclusion>
<artifactId>byte-buddy</artifactId>
<groupId>net.bytebuddy</groupId>
</exclusion>
<exclusion>
<artifactId>byte-buddy-agent</artifactId>
<groupId>net.bytebuddy</groupId>
</exclusion>
<exclusion>
<artifactId>objenesis</artifactId>
<groupId>org.objenesis</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.9.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.maven.surefire</groupId>
<artifactId>surefire-api</artifactId>
<version>2.22.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>hamcrest-core</artifactId>
<groupId>org.hamcrest</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<version>1.3</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>hamcrest-core</artifactId>
<groupId>org.hamcrest</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.easytesting</groupId>
<artifactId>fest-assert</artifactId>
<version>1.4</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>fest-util</artifactId>
<groupId>org.easytesting</groupId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<properties>
<javaVersion>8</javaVersion>
</properties>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
META-INF/NOTICE
META-INF/maven/org.apache.maven.surefire/surefire-junit-platform/pom.properties
META-INF/services/org.apache.maven.surefire.providerapi.SurefireProvider
org.apache.maven.surefire.junitplatform.JUnitPlatformProvider.class
org.apache.maven.surefire.junitplatform.TestMethodFilter.class
META-INF/DEPENDENCIES
org.apache.maven.surefire.junitplatform.RunListenerAdapter.class
META-INF/maven/org.apache.maven.surefire/surefire-junit-platform/pom.xml
META-INF/LICENSE
org.apache.maven.surefire.junitplatform.TestPlanScannerFilter.class
org.apache.maven.surefire.report.ClassNameStackTraceFilter.class
org.apache.maven.surefire.report.PojoStackTraceWriter.class
org.apache.maven.surefire.report.SmartStackTraceParser.class
org.apache.maven.surefire.report.StackTraceFilter.class
META-INF/maven/org.apache.maven.surefire/common-java5/pom.xml
META-INF/maven/org.apache.maven.surefire/common-java5/pom.properties
org/apache/maven/surefire/org/apache/maven/shared/utils/annotations.xml
org.apache.maven.surefire.org.apache.maven.shared.utils.StringUtils.class
META-INF/maven/org.apache.maven.shared/maven-shared-utils/pom.xml
META-INF/maven/org.apache.maven.shared/maven-shared-utils/pom.properties
META-INF/LICENSE.txt
META-INF/NOTICE.txt
META-INF/maven/commons-io/commons-io/pom.xml
META-INF/maven/commons-io/commons-io/pom.properties
META-INF/maven/org.apache.maven.surefire/surefire-api/pom.xml
org.apache.maven.surefire.report.StackTraceWriter.class
org.apache.maven.surefire.util.internal.StringUtils$1.class
org.apache.maven.surefire.util.internal.StringUtils$EncodedArray.class
org.apache.maven.surefire.util.internal.StringUtils.class
org.apache.maven.surefire.report.SafeThrowable.class
org/apache/maven/surefire/surefire.properties
META-INF/maven/org.apache.maven.surefire/surefire-api/pom.properties
org/apache/maven/surefire/shade/org/apache/maven/shared/utils/annotations.xml
META-INF/maven/org.apache.maven.surefire/surefire-logger-api/pom.xml
META-INF/maven/org.apache.maven.surefire/surefire-logger-api/pom.properties
|
依赖Jar: |
junit-platform-launcher-1.3.1.jar
/org.junit.platform/junit-platform-launcher/1.3.1
查看junit-platform-launcher所有版本文件
junit-jupiter-engine-5.3.1.jar
/org.junit.jupiter/junit-jupiter-engine/5.3.1
查看junit-jupiter-engine所有版本文件
mockito-core-2.21.0.jar
/org.mockito/mockito-core/2.21.0
查看mockito-core所有版本文件
assertj-core-3.9.1.jar
/org.assertj/assertj-core/3.9.1
查看assertj-core所有版本文件
surefire-api-2.22.1.jar
/org.apache.maven.surefire/surefire-api/2.22.1
查看surefire-api所有版本文件
junit-4.12.jar
/junit/junit/4.12
查看junit所有版本文件
hamcrest-library-1.3.jar
/org.hamcrest/hamcrest-library/1.3
查看hamcrest-library所有版本文件
fest-assert-1.4.jar
/org.easytesting/fest-assert/1.4
查看fest-assert所有版本文件
|