组织ID: |
org.apache.maven.surefire |
项目ID: |
surefire-shadefire |
版本: |
2.13 |
最后修改时间: |
2019-10-24 03:09:49 |
包类型: |
jar |
标题: |
ShadeFire JUnit3 Provider |
描述: |
A super-shaded junit3 provider that is used by surefire to build itself,
that basically has ALL classes relocated to facilitate no API-conflict whatsover with ourself.
The only remaining point of conflict is around the booter properties file format |
大小: |
176.34KB |
|
Maven引入代码: |
<dependency>
<groupId>org.apache.maven.surefire</groupId>
<artifactId>surefire-shadefire</artifactId>
<version>2.13</version>
</dependency>
|
Gradle引入代码: |
org.apache.maven.surefire:surefire-shadefire:2.13
|
下载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.13</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>surefire-shadefire</artifactId>
<name>ShadeFire JUnit3 Provider</name>
<description>A super-shaded junit3 provider that is used by surefire to build itself,
that basically has ALL classes relocated to facilitate no API-conflict whatsover with ourself.
The only remaining point of conflict is around the booter properties file format</description>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<build>
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<artifactSet>
<includes>
<include>org.apache.maven.surefire:surefire-api</include>
<include>org.apache.maven.surefire:surefire-booter</include>
<include>org.apache.maven.surefire:surefire-junit3</include>
</includes>
</artifactSet>
<relocations>
<relocation>
<pattern>org.apache.maven.surefire</pattern>
<shadedPattern>org.apache.maven.surefire.shadefire</shadedPattern>
</relocation>
</relocations>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>${shadedVersion}</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
META-INF/NOTICE
META-INF/DEPENDENCIES
META-INF/services/org.apache.maven.surefire.providerapi.SurefireProvider
META-INF/LICENSE
META-INF/maven/org.apache.maven.surefire/surefire-shadefire/pom.xml
META-INF/maven/org.apache.maven.surefire/surefire-shadefire/pom.properties
org.apache.maven.surefire.shadefire.junit.PojoAndJUnit3Checker.class
org.apache.maven.surefire.shadefire.junit.SurefireTestSet.class
org.apache.maven.surefire.shadefire.junit.JUnitStackTraceWriter.class
org.apache.maven.surefire.shadefire.junit.JUnit3Provider.class
org.apache.maven.surefire.shadefire.junit.JUnitTestSet.class
org.apache.maven.surefire.shadefire.junit.TestListenerInvocationHandler$FailedTest.class
org.apache.maven.surefire.shadefire.junit.TestListenerInvocationHandler.class
org.apache.maven.surefire.shadefire.junit.PojoTestSet.class
META-INF/maven/org.apache.maven.surefire/surefire-junit3/pom.xml
META-INF/maven/org.apache.maven.surefire/surefire-junit3/pom.properties
org.apache.maven.surefire.shadefire.common.junit3.JUnit3Reflector.class
org.apache.maven.surefire.shadefire.common.junit3.JUnit3TestChecker.class
META-INF/maven/org.apache.maven.surefire/common-junit3/pom.xml
META-INF/maven/org.apache.maven.surefire/common-junit3/pom.properties
org.apache.maven.surefire.shadefire.report.PojoStackTraceWriter.class
org.apache.maven.surefire.shadefire.report.SimpleReportEntry.class
org.apache.maven.surefire.shadefire.report.RunListener.class
org.apache.maven.surefire.shadefire.report.ConsoleOutputCapture$ForwardingPrintStream.class
org.apache.maven.surefire.shadefire.report.DefaultDirectConsoleReporter.class
org.apache.maven.surefire.shadefire.report.ReporterConfiguration.class
org.apache.maven.surefire.shadefire.report.ConsoleOutputReceiverForCurrentThread.class
org.apache.maven.surefire.shadefire.report.ConsoleOutputReceiver.class
org.apache.maven.surefire.shadefire.report.ConsoleLogger.class
org.apache.maven.surefire.shadefire.report.CategorizedReportEntry.class
org.apache.maven.surefire.shadefire.report.StackTraceWriter.class
org.apache.maven.surefire.shadefire.report.ReportEntry.class
org.apache.maven.surefire.shadefire.report.ReporterException.class
org.apache.maven.surefire.shadefire.report.DefaultConsoleReporter.class
org.apache.maven.surefire.shadefire.report.ConsoleOutputCapture.class
org.apache.maven.surefire.shadefire.report.SafeThrowable.class
org.apache.maven.surefire.shadefire.report.ReporterFactory.class
org/apache/maven/surefire/shadefire/surefire.properties
org.apache.maven.surefire.shadefire.suite.RunResult.class
org.apache.maven.surefire.shadefire.NonAbstractClassFilter.class
org.apache.maven.surefire.shadefire.providerapi.ProviderParameters.class
org.apache.maven.surefire.shadefire.providerapi.AbstractProvider.class
org.apache.maven.surefire.shadefire.providerapi.SurefireProvider.class
org.apache.maven.surefire.shadefire.util.DefaultRunOrderCalculator$1.class
org.apache.maven.surefire.shadefire.util.UrlUtils.class
org.apache.maven.surefire.shadefire.util.DefaultRunOrderCalculator.class
org.apache.maven.surefire.shadefire.util.DefaultScanResult.class
org.apache.maven.surefire.shadefire.util.NestedRuntimeException.class
org.apache.maven.surefire.shadefire.util.TestsToRun.class
org.apache.maven.surefire.shadefire.util.SurefireReflectionException.class
org.apache.maven.surefire.shadefire.util.RunOrderCalculator.class
org.apache.maven.surefire.shadefire.util.ReflectionUtils.class
org.apache.maven.surefire.shadefire.util.DefaultDirectoryScanner.class
org.apache.maven.surefire.shadefire.util.ScanResult.class
org.apache.maven.surefire.shadefire.util.DefaultRunOrderCalculator$2.class
org.apache.maven.surefire.shadefire.util.RunOrder.class
org.apache.maven.surefire.shadefire.util.internal.StringUtils.class
org.apache.maven.surefire.shadefire.util.internal.ByteBuffer.class
org.apache.maven.surefire.shadefire.util.ScannerFilter.class
org.apache.maven.surefire.shadefire.util.NestedCheckedException.class
org.apache.maven.surefire.shadefire.util.DirectoryScanner.class
org.apache.maven.surefire.shadefire.testset.TestSetFailedException.class
org.apache.maven.surefire.shadefire.testset.DirectoryScannerParameters.class
org.apache.maven.surefire.shadefire.testset.RunOrderParameters.class
org.apache.maven.surefire.shadefire.testset.TestRequest.class
org.apache.maven.surefire.shadefire.testset.TestArtifactInfo.class
org.apache.maven.surefire.shadefire.SpecificTestClassFilter.class
org.apache.maven.surefire.shadefire.booter.ReporterConfigurationAware.class
org.apache.maven.surefire.shadefire.booter.SurefireClassLoadersAware.class
org.apache.maven.surefire.shadefire.booter.JdkReflector.class
org.apache.maven.surefire.shadefire.booter.TestArtifactInfoAware.class
org.apache.maven.surefire.shadefire.booter.SurefireReflector.class
org.apache.maven.surefire.shadefire.booter.ForkingReporterFactory.class
org.apache.maven.surefire.shadefire.booter.ProviderPropertiesAware.class
org.apache.maven.surefire.shadefire.booter.ForkingRunListener.class
org.apache.maven.surefire.shadefire.booter.RunOrderParametersAware.class
org.apache.maven.surefire.shadefire.booter.ProviderParameterNames.class
org.apache.maven.surefire.shadefire.booter.TestRequestAware.class
org.apache.maven.surefire.shadefire.booter.SurefireReflector$ClassLoaderProxy.class
org.apache.maven.surefire.shadefire.booter.BaseProviderFactory.class
org.apache.maven.surefire.shadefire.booter.DirectoryScannerParametersAware.class
org.apache.maven.plugin.surefire.runorder.PrioritizedTest.class
org.apache.maven.plugin.surefire.runorder.ThreadedExecutionScheduler.class
org.apache.maven.plugin.surefire.runorder.RunEntryStatisticsMap$PrioritizedTestComparator.class
org.apache.maven.plugin.surefire.runorder.Priority.class
org.apache.maven.plugin.surefire.runorder.RunEntryStatisticsMap.class
org.apache.maven.plugin.surefire.runorder.RunEntryStatisticsMap$TestRuntimeComparator.class
org.apache.maven.plugin.surefire.runorder.RunEntryStatisticsMap$LeastFailureComparator.class
org.apache.maven.plugin.surefire.runorder.RunEntryStatisticsMap$RunCountComparator.class
org.apache.maven.plugin.surefire.runorder.RunEntryStatistics.class
META-INF/maven/org.apache.maven.surefire/surefire-api/pom.xml
META-INF/maven/org.apache.maven.surefire/surefire-api/pom.properties
org.apache.maven.surefire.shadefire.shade.org.codehaus.plexus.util.Scanner.class
org.apache.maven.surefire.shadefire.shade.org.codehaus.plexus.util.StringUtils.class
org.apache.maven.surefire.shadefire.shade.org.codehaus.plexus.util.MatchPatterns.class
org.apache.maven.surefire.shadefire.shade.org.codehaus.plexus.util.Java7FileUtil.class
org.apache.maven.surefire.shadefire.shade.org.codehaus.plexus.util.Java7Detector.class
org.apache.maven.surefire.shadefire.shade.org.codehaus.plexus.util.SelectorUtils.class
org.apache.maven.surefire.shadefire.shade.org.codehaus.plexus.util.MatchPattern.class
org.apache.maven.surefire.shadefire.shade.org.codehaus.plexus.util.AbstractScanner.class
org.apache.maven.surefire.shadefire.shade.org.codehaus.plexus.util.DirectoryScanner.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
依赖Jar: |
junit-3.8.1.jar
/junit/junit/3.8.1
查看junit所有版本文件
|