You can download junit-runners-1.3.jar in this page.
The Apache Software License, Version 2.0
junit-runners-1.3.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/com.nitorcreations/junit-runners/pom.properties META-INF/maven/com.nitorcreations/junit-runners/pom.xml com.nitorcreations.junit.rules.SkipTestMethodsAfterFirstFailureRule.class com.nitorcreations.junit.runner.StandaloneJUnitRunner.class com.nitorcreations.junit.runner.StandaloneJUnitRunnerMain.class com.nitorcreations.junit.runner.ThreadLocalStdOutErrCapturer.class com.nitorcreations.junit.runner.XmlJUnitFormatter.class com.nitorcreations.junit.runners.NestedRunner.class com.nitorcreations.junit.runners.NicelyParameterized.class com.nitorcreations.junit.runners.parameterized.ClassLoaderInjector.class com.nitorcreations.junit.runners.parameterized.DefaultParameterizationStrategy.class com.nitorcreations.junit.runners.parameterized.DescriptionMapper.class com.nitorcreations.junit.runners.parameterized.DescriptionMappingRunNotifierProxy.class com.nitorcreations.junit.runners.parameterized.ParameterizationStrategy.class com.nitorcreations.junit.runners.parameterized.ParameterizationStrategyNotAvailableException.class com.nitorcreations.junit.runners.parameterized.ParameterizedSuite.class com.nitorcreations.junit.runners.parameterized.ParameterizedSuiteBuilder.class com.nitorcreations.junit.runners.parameterized.PowermockParameterizationStrategy.class com.nitorcreations.junit.runners.parameterized.WrappedRunWith.class com.nitorcreations.junit.runners.parameterized.WrappingParameterizedRunner.class
junit-runners-1.3.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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.nitorcreations</groupId> <artifactId>junit-runners</artifactId> <version>1.3</version> <packaging>jar</packaging> <name>JUnit Runners</name> <description>JUnit4 Test Runners</description> <url>https://github.com/NitorCreations/CoreComponents</url> <scm> <developerConnection>scm:git:https://github.com/NitorCreations/CoreComponents.git</developerConnection> <connection>scm:git:https://github.com/NitorCreations/CoreComponents.git</connection> <url>https://github.com/NitorCreations/CoreComponents</url> <tag>HEAD</tag> </scm> <prerequisites> <maven>3.1.1</maven> </prerequisites> <developers> <developer> <id>Macroz</id> <name>Markku Rontu</name> <email>markku.rontu@nitorcreations.com</email> </developer> <developer> <id>niom</id> <name>Marko Pukari</name> <email>marko.pukari@nitorcreations.com</email> </developer> <developer> <id>xkr47</id> <name>Jonas Berlin</name> <email>jonas.berlin@nitorcreations.com</email> </developer> <developer> <id>gmokki</id> <name>Mikko Tiihonen</name> <email>mikko.tiihonen@nitorcreations.com</email> </developer> </developers> <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> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <!-- public dependency versions --> <junit.version>4.11</junit.version> <asm.version>5.0.3</asm.version> <powermock.version>1.5.6</powermock.version> <!-- internal dependency versions --> <maven.enforcer.version>1.3.1</maven.enforcer.version> <hamcrest.version>1.3</hamcrest.version> <findbugs.annotations.version>3.0.0</findbugs.annotations.version> <spring.core.version>4.1.1.RELEASE</spring.core.version> <mockito.core.version>1.10.8</mockito.core.version> <objenesis.version>2.1</objenesis.version> <slf4j.version>1.7.7</slf4j.version> <logback.version>1.1.2</logback.version> <cglib.version>3.1</cglib.version> </properties> <build> <pluginManagement> <plugins> <plugin> <artifactId>maven-eclipse-plugin</artifactId> <version>2.9</version> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.2</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> <version>2.6</version> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.17</version> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>2.5</version> <configuration> <archive> <manifestEntries> <Main-Class>com.nitorcreations.junit.runner.StandaloneJUnitRunnerMain</Main-Class> </manifestEntries> </archive> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>2.4</version> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.1</version> </plugin> <plugin> <artifactId>maven-site-plugin</artifactId> <version>3.4</version> </plugin> <plugin> <artifactId>maven-install-plugin</artifactId> <version>2.5.2</version> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <version>2.5.1</version> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> <version>2.7</version> </plugin> <plugin> <artifactId>maven-clean-plugin</artifactId> <version>2.6</version> </plugin> <plugin> <artifactId>maven-deploy-plugin</artifactId> <version>2.8.2</version> </plugin> <plugin> <artifactId>maven-enforcer-plugin</artifactId> <version>${maven.enforcer.version}</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.5</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <artifactId>maven-eclipse-plugin</artifactId> <configuration> <downloadSources>true</downloadSources> <downloadJavadocs>false</downloadJavadocs> <outputDirectory>.eclipse_classes</outputDirectory> <haltOnFailure>true</haltOnFailure> </configuration> </plugin> <plugin> <inherited>true</inherited> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <includes> <include>**/*Test.java</include> </includes> <runOrder>random</runOrder> <forkMode>never</forkMode> <redirectTestOutputToFile>true</redirectTestOutputToFile> </configuration> </plugin> <plugin> <artifactId>maven-enforcer-plugin</artifactId> <executions> <execution> <id>ban-unwanted-dependencies</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <!-- documentation at: https://maven.apache.org/enforcer/enforcer-rules/index.html --> <bannedDependencies> <excludes> <exclude>commons-logging:commons-logging</exclude> <!-- we use jcl-over-slf4j instead --> <exclude>log4j:log4j</exclude> <!-- we use jcl-over-slf4j instead --> </excludes> </bannedDependencies> </rules> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencyManagement> <dependencies> <!-- external dependencies --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> </dependency> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm</artifactId> <version>${asm.version}</version> </dependency> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm-commons</artifactId> <version>${asm.version}</version> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-library</artifactId> <version>${hamcrest.version}</version> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>${mockito.core.version}</version> </dependency> <dependency> <groupId>org.objenesis</groupId> <artifactId>objenesis</artifactId> <version>${objenesis.version}</version> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-core</artifactId> <version>${powermock.version}</version> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-module-junit4</artifactId> <version>${powermock.version}</version> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-api-mockito</artifactId> <version>${powermock.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> <version>${spring.core.version}</version> <exclusions> <exclusion> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>${spring.core.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <version>${spring.core.version}</version> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>${logback.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>cglib</groupId> <artifactId>cglib-nodep</artifactId> <version>${cglib.version}</version> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>annotations</artifactId> <version>${findbugs.annotations.version}</version> <scope>provided</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm</artifactId> </dependency> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm-commons</artifactId> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-core</artifactId> </dependency> <!-- test --> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-library</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.objenesis</groupId> <artifactId>objenesis</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-module-junit4</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-api-mockito</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>cglib</groupId> <artifactId>cglib-nodep</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>annotations</artifactId> </dependency> </dependencies> <reporting> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> <version>3.0.0</version> <configuration> <findbugsXmlOutput>true</findbugsXmlOutput> <effort>Max</effort> <threshold>Low</threshold> <!-- <excludeFilterFile>PATH_TO_PMD_XML/findbugs-exclude.xml</excludeFilterFile> --> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> <version>2.6</version> <configuration> <formats> <format>xml</format> </formats> </configuration> </plugin> <plugin> <artifactId>maven-pmd-plugin</artifactId> <version>3.2</version> <configuration> <linkXref>true</linkXref> <minimumTokens>100</minimumTokens> <targetJdk>1.6</targetJdk> <!-- <rulesets> <ruleset>PATH_TO_PMD_XML/pmd.xml</ruleset> </rulesets> --> <excludes> <exclude>**/test/*.java</exclude> </excludes> </configuration> </plugin> </plugins> </reporting> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>
<dependency> <groupId>com.nitorcreations</groupId> <artifactId>junit-runners</artifactId> <version>1.3</version> </dependency>
If you think the following junit-runners-1.3.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download junit-runners-1.3.jar file