Download surefire-junit3-2.10.jar file

Introduction

You can download surefire-junit3-2.10.jar in this page.

License

Apache Open Source

Type List

surefire-junit3-2.10.jar file has the following types.

META-INF/DEPENDENCIES
META-INF/LICENSE
META-INF/MANIFEST.MF
META-INF/NOTICE
META-INF/maven/org.apache.maven.surefire/common-junit3/pom.properties
META-INF/maven/org.apache.maven.surefire/common-junit3/pom.xml
META-INF/maven/org.apache.maven.surefire/surefire-junit3/pom.properties
META-INF/maven/org.apache.maven.surefire/surefire-junit3/pom.xml
META-INF/services/org.apache.maven.surefire.providerapi.SurefireProvider
org.apache.maven.surefire.common.junit3.JUnit3Reflector.class
org.apache.maven.surefire.common.junit3.JUnit3TestChecker.class
org.apache.maven.surefire.junit.JUnit3Provider.class
org.apache.maven.surefire.junit.JUnitStackTraceWriter.class
org.apache.maven.surefire.junit.JUnitTestSet.class
org.apache.maven.surefire.junit.PojoAndJUnit3Checker.class
org.apache.maven.surefire.junit.PojoTestSet.class
org.apache.maven.surefire.junit.SurefireTestSet.class
org.apache.maven.surefire.junit.TestListenerInvocationHandler.class

Pom

surefire-junit3-2.10.pom file content.

<?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.10</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <artifactId>surefire-junit3</artifactId>
  <name>SureFire JUnit Runner</name>
  <build>
    <resources>
      <resource>
        <targetPath>META-INF</targetPath>
        <directory>src/main/resources/META-INF</directory>
      </resource>
    </resources>
    <plugins>
      <plugin>
        <artifactId>maven-shade-plugin</artifactId>
        <executions>
          <execution>
            <phase>package</phase>
            <goals>
              <goal>shade</goal>
            </goals>
            <configuration>
              <artifactSet>
                <includes>
                  <include>org.apache.maven.surefire:common-junit3</include>
                </includes>
              </artifactSet>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.apache.maven.surefire</groupId>
      <artifactId>surefire-api</artifactId>
      <version>2.10</version>
      <scope>compile</scope>
    </dependency>
  </dependencies>
</project>

POM Entry

<dependency>
   <groupId>org.apache.maven.surefire</groupId>
   <artifactId>surefire-junit3</artifactId>
   <version>2.10</version>
</dependency>

Download

If you think the following surefire-junit3-2.10.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download surefire-junit3-2.10.jar file




PreviousNext

Related