组织ID: |
org.apache.maven.surefire |
项目ID: |
common-junit48 |
版本: |
2.11 |
最后修改时间: |
2018-08-07 18:19:14 |
包类型: |
jar |
标题: |
Shared JUnit48 Provider Code |
大小: |
23.23KB |
|
Maven引入代码: |
<dependency>
<groupId>org.apache.maven.surefire</groupId>
<artifactId>common-junit48</artifactId>
<version>2.11</version>
</dependency>
|
Gradle引入代码: |
org.apache.maven.surefire:common-junit48:2.11
|
下载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-providers</artifactId>
<groupId>org.apache.maven.surefire</groupId>
<version>2.11</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>common-junit48</artifactId>
<name>Shared JUnit48 Provider Code</name>
<build>
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<minimizeJar>true</minimizeJar>
<artifactSet>
<includes>
<include>org.codehaus.plexus:plexus-utils</include>
</includes>
</artifactSet>
<relocations>
<relocation>
<pattern>org.codehaus.plexus.util</pattern>
<shadedPattern>org.apache.maven.surefire.commonjunit48.org.codehaus.plexus.util</shadedPattern>
</relocation>
</relocations>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven.surefire</groupId>
<artifactId>common-junit4</artifactId>
<version>2.11</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.maven.surefire</groupId>
<artifactId>surefire-api</artifactId>
<version>2.11</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
org.apache.maven.surefire.common.junit48.FilterFactory$CombinedCategoryFilter.class
org.apache.maven.surefire.common.junit48.FilterFactory$MethodFilter.class
org.apache.maven.surefire.common.junit48.JUnit48Reflector.class
org.apache.maven.surefire.common.junit48.FilterFactory.class
META-INF/LICENSE
META-INF/NOTICE
META-INF/DEPENDENCIES
META-INF/maven/org.apache.maven.surefire/common-junit48/pom.xml
META-INF/maven/org.apache.maven.surefire/common-junit48/pom.properties
licenses/extreme.indiana.edu.license.TXT
licenses/javolution.license.TXT
licenses/thoughtworks.TXT
org.apache.maven.surefire.commonjunit48.org.codehaus.plexus.util.SelectorUtils.class
META-INF/maven/org.codehaus.plexus/plexus-utils/pom.xml
META-INF/maven/org.codehaus.plexus/plexus-utils/pom.properties
|
依赖Jar: |
junit-4.8.1.jar
/junit/junit/4.8.1
查看junit所有版本文件
common-junit4-2.11.jar
/org.apache.maven.surefire/common-junit4/2.11
查看common-junit4所有版本文件
surefire-api-2.11.jar
/org.apache.maven.surefire/surefire-api/2.11
查看surefire-api所有版本文件
|