组织ID: |
org.apache.maven.surefire |
项目ID: |
surefire-junit47 |
版本: |
2.7.1 |
最后修改时间: |
2018-08-05 16:59:10 |
包类型: |
jar |
标题: |
SureFire JUnitCore Runner |
大小: |
31.33KB |
|
Maven引入代码: |
<dependency>
<groupId>org.apache.maven.surefire</groupId>
<artifactId>surefire-junit47</artifactId>
<version>2.7.1</version>
</dependency>
|
Gradle引入代码: |
org.apache.maven.surefire:surefire-junit47:2.7.1
|
下载Jar包: |
|
POM文件内容: |
<!--
~ Licensed to the Apache Software Foundation (ASF) under one
~ or more contributor license agreements. See the NOTICE file
~ distributed with this work for additional information
~ regarding copyright ownership. The ASF licenses this file
~ to you under the Apache License, Version 2.0 (the
~ "License"); you may not use this file except in compliance
~ with the License. You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing,
~ software distributed under the License is distributed on an
~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
~ KIND, either express or implied. See the License for the
~ specific language governing permissions and limitations
~ under the License.
-->
<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>
<parent>
<groupId>org.apache.maven.surefire</groupId>
<artifactId>surefire-providers</artifactId>
<version>2.7.1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>surefire-junit47</artifactId>
<name>SureFire JUnitCore Runner</name>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-utils</artifactId>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>1.7</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<directory>src/main/resources/META-INF</directory>
<targetPath>META-INF</targetPath>
</resource>
</resources>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<fork>true</fork>
<compilerVersion>1.5</compilerVersion>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<jvm>${java.home}/bin/java</jvm>
<redirectTestOutputToFile>true</redirectTestOutputToFile>
</configuration>
</plugin>
</plugins>
</build>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
org.apache.maven.surefire.junitcore.ConcurrentPrintStream.class
org.apache.maven.surefire.junitcore.ConfigurableParallelComputer$SynchronousRunner.class
org.apache.maven.surefire.junitcore.TestMethod.class
org.apache.maven.surefire.junitcore.ConfigurableParallelComputer$AsynchronousRunner$1.class
org.apache.maven.surefire.junitcore.MethodsParallelRunListener.class
org.apache.maven.surefire.junitcore.ConfigurableParallelComputer$AsynchronousRunner.class
org.apache.maven.surefire.junitcore.LogicalStream$Entry.class
org.apache.maven.surefire.junitcore.LogicalStream.class
org.apache.maven.surefire.junitcore.JUnitCoreParameters.class
org.apache.maven.surefire.junitcore.ConfigurableParallelComputer.class
org.apache.maven.surefire.junitcore.ConcurrentReportingRunListener.class
org.apache.maven.surefire.junitcore.ClassesParallelRunListener.class
org.apache.maven.surefire.junitcore.TestSet.class
org.apache.maven.surefire.junitcore.JUnitCoreProvider.class
org.apache.maven.surefire.junitcore.JUnitCoreWrapper.class
org.apache.maven.surefire.junitcore.JUnitCoreStackTraceWriter.class
META-INF/LICENSE
META-INF/NOTICE
META-INF/DEPENDENCIES
META-INF/services/org.apache.maven.surefire.providerapi.SurefireProvider
META-INF/maven/org.apache.maven.surefire/surefire-junit47/pom.xml
META-INF/maven/org.apache.maven.surefire/surefire-junit47/pom.properties
|
依赖Jar: |
junit-4.8.1.jar
/junit/junit/4.8.1
查看junit所有版本文件
mockito-all-1.7.jar
/org.mockito/mockito-all/1.7
查看mockito-all所有版本文件
|