组织ID: |
org.apache.maven.surefire |
项目ID: |
surefire-booter |
版本: |
2.22.0 |
最后修改时间: |
2018-07-24 07:35:06 |
包类型: |
jar |
标题: |
SureFire Booter |
描述: |
API and Facilities used by forked tests running in JVM sub-process. |
大小: |
267.08KB |
|
Maven引入代码: |
<dependency>
<groupId>org.apache.maven.surefire</groupId>
<artifactId>surefire-booter</artifactId>
<version>2.22.0</version>
</dependency>
|
Gradle引入代码: |
org.apache.maven.surefire:surefire-booter:2.22.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">
<parent>
<artifactId>surefire</artifactId>
<groupId>org.apache.maven.surefire</groupId>
<version>2.22.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>surefire-booter</artifactId>
<name>SureFire Booter</name>
<description>API and Facilities used by forked tests running in JVM sub-process.</description>
<build>
<plugins>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>build-test-classpath</id>
<phase>generate-sources</phase>
<goals>
<goal>build-classpath</goal>
</goals>
<configuration>
<includeScope>test</includeScope>
<outputFile>target/test-classpath/cp.txt</outputFile>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<dependencies>
<dependency>
<groupId>org.apache.maven.surefire</groupId>
<artifactId>surefire-shadefire</artifactId>
<version>2.12.4</version>
</dependency>
</dependencies>
<configuration>
<includes>
<include>**/JUnit4SuiteTest.java</include>
</includes>
</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.commons:commons-lang3</include>
<include>commons-io:commons-io</include>
</includes>
</artifactSet>
<relocations>
<relocation>
<pattern>org.apache.commons.lang3</pattern>
<shadedPattern>org.apache.maven.surefire.shade.org.apache.commons.lang3</shadedPattern>
</relocation>
<relocation>
<pattern>org.apache.commons.io</pattern>
<shadedPattern>org.apache.maven.surefire.shade.org.apache.commons.io</shadedPattern>
</relocation>
</relocations>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.apache.maven.surefire</groupId>
<artifactId>surefire-api</artifactId>
<version>2.22.0</version>
<scope>compile</scope>
<exclusions>
<exclusion>
<artifactId>maven-shared-utils</artifactId>
<groupId>org.apache.maven.shared</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.maven.shared</groupId>
<artifactId>maven-shared-utils</artifactId>
<version>0.9</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>jsr305</artifactId>
<groupId>com.google.code.findbugs</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<version>2.0.3</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>2.13.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.powermock</groupId>
<artifactId>powermock-core</artifactId>
<version>2.0.0-beta.5</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>powermock-reflect</artifactId>
<groupId>org.powermock</groupId>
</exclusion>
<exclusion>
<artifactId>javassist</artifactId>
<groupId>org.javassist</groupId>
</exclusion>
<exclusion>
<artifactId>byte-buddy</artifactId>
<groupId>net.bytebuddy</groupId>
</exclusion>
<exclusion>
<artifactId>byte-buddy-agent</artifactId>
<groupId>net.bytebuddy</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-module-junit4</artifactId>
<version>2.0.0-beta.5</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>powermock-module-junit4-common</artifactId>
<groupId>org.powermock</groupId>
</exclusion>
<exclusion>
<artifactId>hamcrest-core</artifactId>
<groupId>org.hamcrest</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-api-mockito2</artifactId>
<version>2.0.0-beta.5</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>powermock-api-support</artifactId>
<groupId>org.powermock</groupId>
</exclusion>
</exclusions>
</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>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
META-INF/DEPENDENCIES
META-INF/NOTICE
org.apache.maven.surefire.booter.BooterDeserializer.class
org.apache.maven.surefire.booter.ClassLoaderConfiguration.class
org.apache.maven.surefire.booter.Classpath.class
org.apache.maven.surefire.booter.ClasspathConfiguration.class
org.apache.maven.surefire.booter.ForkedBooter$1.class
org.apache.maven.surefire.booter.ForkedBooter$2.class
org.apache.maven.surefire.booter.ForkedBooter$3.class
org.apache.maven.surefire.booter.ForkedBooter$4.class
org.apache.maven.surefire.booter.ForkedBooter$5.class
org.apache.maven.surefire.booter.ForkedBooter$6.class
org.apache.maven.surefire.booter.ForkedBooter$7.class
org.apache.maven.surefire.booter.ForkedBooter$PingScheduler.class
org.apache.maven.surefire.booter.ForkedBooter.class
org.apache.maven.surefire.booter.IsolatedClassLoader.class
org.apache.maven.surefire.booter.KeyValueSource.class
org.apache.maven.surefire.booter.LazyTestsToRun$BlockingIterator.class
org.apache.maven.surefire.booter.ModularClasspath.class
org.apache.maven.surefire.booter.PpidChecker$1.class
org.apache.maven.surefire.booter.PpidChecker$ProcessInfoConsumer.class
org.apache.maven.surefire.booter.ProcessInfo.class
org.apache.maven.surefire.booter.PropertiesWrapper.class
org.apache.maven.surefire.booter.ProviderFactory$1.class
org.apache.maven.surefire.booter.ProviderFactory.class
org.apache.maven.surefire.booter.SurefireBooterForkException.class
org.apache.maven.surefire.booter.SurefireExecutionException.class
org.apache.maven.surefire.booter.SystemPropertyManager.class
org.apache.maven.surefire.booter.SystemUtils.class
META-INF/maven/org.apache.maven.surefire/surefire-booter/pom.properties
org.apache.maven.surefire.booter.AbstractPathConfiguration.class
org.apache.maven.surefire.booter.BooterConstants.class
META-INF/LICENSE
org.apache.maven.surefire.booter.LazyTestsToRun$1.class
org.apache.maven.surefire.booter.LazyTestsToRun.class
org.apache.maven.surefire.booter.ModularClasspathConfiguration.class
org.apache.maven.surefire.booter.PpidChecker$2.class
org.apache.maven.surefire.booter.PpidChecker.class
org.apache.maven.surefire.booter.ProviderConfiguration.class
org.apache.maven.surefire.booter.ProviderFactory$ProviderProxy.class
org.apache.maven.surefire.booter.StartupConfiguration.class
org.apache.maven.surefire.booter.TypeEncodedValue.class
META-INF/maven/org.apache.maven.surefire/surefire-booter/pom.xml
META-INF/LICENSE.txt
org.apache.maven.surefire.shade.org.apache.commons.lang3.builder.ToStringExclude.class
org.apache.maven.surefire.shade.org.apache.commons.lang3.builder.ToStringStyle$DefaultToStringStyle.class
org.apache.maven.surefire.shade.org.apache.commons.lang3.builder.ToStringStyle.class
org.apache.maven.surefire.shade.org.apache.commons.lang3.ClassUtils$Interfaces.class
META-INF/NOTICE.txt
org.apache.maven.surefire.shade.org.apache.commons.lang3.ClassUtils$2.class
org.apache.maven.surefire.shade.org.apache.commons.lang3.math.NumberUtils.class
org.apache.maven.surefire.shade.org.apache.commons.lang3.ObjectUtils.class
org.apache.maven.surefire.shade.org.apache.commons.lang3.Validate.class
org.apache.maven.surefire.shade.org.apache.commons.lang3.builder.ToStringStyle$MultiLineToStringStyle.class
org.apache.maven.surefire.shade.org.apache.commons.lang3.ClassUtils$1$1.class
org.apache.maven.surefire.shade.org.apache.commons.lang3.ClassUtils$2$1.class
META-INF/maven/org.apache.commons/commons-lang3/pom.properties
org.apache.maven.surefire.shade.org.apache.commons.lang3.ArrayUtils.class
org.apache.maven.surefire.shade.org.apache.commons.lang3.builder.EqualsExclude.class
org.apache.maven.surefire.shade.org.apache.commons.lang3.builder.HashCodeBuilder.class
org.apache.maven.surefire.shade.org.apache.commons.lang3.builder.ReflectionToStringBuilder.class
org.apache.maven.surefire.shade.org.apache.commons.lang3.builder.ToStringStyle$ShortPrefixToStringStyle.class
org.apache.maven.surefire.shade.org.apache.commons.lang3.builder.ToStringStyle$SimpleToStringStyle.class
org.apache.maven.surefire.shade.org.apache.commons.lang3.CharUtils.class
org.apache.maven.surefire.shade.org.apache.commons.lang3.builder.Builder.class
org.apache.maven.surefire.shade.org.apache.commons.lang3.builder.CompareToBuilder.class
org.apache.maven.surefire.shade.org.apache.commons.lang3.builder.ToStringStyle$JsonToStringStyle.class
org.apache.maven.surefire.shade.org.apache.commons.lang3.mutable.MutableInt.class
org.apache.maven.surefire.shade.org.apache.commons.lang3.mutable.MutableObject.class
org.apache.maven.surefire.shade.org.apache.commons.lang3.text.StrTokenizer.class
org.apache.maven.surefire.shade.org.apache.commons.lang3.ArrayUtils$1.class
org.apache.maven.surefire.shade.org.apache.commons.lang3.builder.ToStringBuilder.class
org.apache.maven.surefire.shade.org.apache.commons.lang3.ClassUtils.class
org.apache.maven.surefire.shade.org.apache.commons.lang3.text.StrBuilder$StrBuilderReader.class
org.apache.maven.surefire.shade.org.apache.commons.lang3.text.StrBuilder.class
org.apache.maven.surefire.shade.org.apache.commons.lang3.builder.HashCodeExclude.class
org.apache.maven.surefire.shade.org.apache.commons.lang3.builder.IDKey.class
org.apache.maven.surefire.shade.org.apache.commons.lang3.builder.ToStringStyle$NoFieldNameToStringStyle.class
org.apache.maven.surefire.shade.org.apache.commons.lang3.CharSequenceUtils.class
org.apache.maven.surefire.shade.org.apache.commons.lang3.JavaVersion.class
org.apache.maven.surefire.shade.org.apache.commons.lang3.SystemUtils.class
org.apache.maven.surefire.shade.org.apache.commons.lang3.text.StrBuilder$StrBuilderTokenizer.class
org.apache.maven.surefire.shade.org.apache.commons.lang3.text.StrBuilder$StrBuilderWriter.class
org.apache.maven.surefire.shade.org.apache.commons.lang3.text.StrMatcher$CharMatcher.class
org.apache.maven.surefire.shade.org.apache.commons.lang3.text.StrMatcher$CharSetMatcher.class
org.apache.maven.surefire.shade.org.apache.commons.lang3.text.StrMatcher$NoMatcher.class
org.apache.maven.surefire.shade.org.apache.commons.lang3.text.StrMatcher$StringMatcher.class
org.apache.maven.surefire.shade.org.apache.commons.lang3.text.StrMatcher$TrimMatcher.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
依赖Jar: |
surefire-shadefire-2.12.4.jar
/org.apache.maven.surefire/surefire-shadefire/2.12.4
查看surefire-shadefire所有版本文件
|