| 组织ID: |
org.apache.maven.surefire |
| 项目ID: |
surefire-testng |
| 版本: |
2.0 |
| 最后修改时间: |
2018-09-25 17:40:38 |
| 包类型: |
jar |
| 标题: |
SureFire TestNG Runner |
| 大小: |
14.03KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>org.apache.maven.surefire</groupId>
<artifactId>surefire-testng</artifactId>
<version>2.0</version>
</dependency>
|
| Gradle引入代码: |
org.apache.maven.surefire:surefire-testng:2.0
|
| 下载Jar包: |
|
| POM文件内容: |
<?xml version="1.0"?><project>
<parent>
<artifactId>surefire-providers</artifactId>
<groupId>org.apache.maven.surefire</groupId>
<version>2.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>surefire-testng</artifactId>
<name>SureFire TestNG Runner</name>
<version>2.0</version>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.4</source>
<target>1.4</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<fork>false</fork>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>jdk14</id>
<activation>
<jdk>1.4</jdk>
</activation>
<dependencies>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>4.7</version>
<classifier>jdk14</classifier>
</dependency>
</dependencies>
</profile>
<profile>
<id>jdk15</id>
<activation>
<jdk>!1.4</jdk>
</activation>
<dependencies>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>4.7</version>
<classifier>jdk15</classifier>
</dependency>
</dependencies>
</profile>
<profile>
<id>jdk1.3</id>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<fork>false</fork>
<compilerVersion>1.4</compilerVersion>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<forkMode>once</forkMode>
<jvm>${JAVA_1_3_HOME}/bin/java</jvm>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<distributionManagement>
<status>deployed</status>
</distributionManagement>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
org.apache.maven.surefire.testng.TestNGDirectoryTestSuite.class
org.apache.maven.surefire.testng.TestNGExecutor.class
org.apache.maven.surefire.testng.TestNGReporter.class
org.apache.maven.surefire.testng.TestNGStackTraceWriter.class
org.apache.maven.surefire.testng.TestNGTestSet.class
org.apache.maven.surefire.testng.TestNGXmlTestSuite.class
META-INF/maven/org.apache.maven.surefire/surefire-testng/pom.xml
META-INF/maven/org.apache.maven.surefire/surefire-testng/pom.properties
|
| 依赖Jar: |
testng-4.7.jar
/org.testng/testng/4.7
查看testng所有版本文件
|