51Testing软件测试论坛
标题:
maven项目中testng的基本配置pom.xml
[打印本页]
作者:
tang_test
时间:
2016-6-15 09:57
标题:
maven项目中testng的基本配置pom.xml
<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
">
<modelVersion>4.0.0</modelVersion>
<groupId>cmcc</groupId>
<artifactId>CQYQInterfaceTest</artifactId>
<packaging>jar</packaging>
<version>0.1-PROTOTYPE</version>
<name>CQYQInterfaceTest</name>
<url>http://maven.apache.org</url>
<build>
<plugins>
<plugin>
<artifactId>maven-resources-plugin</artifactId> <!-- 可不加-->
<configuration>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId> <!-- 可不加-->
<configuration>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<encoding>utf-8</encoding> <source>1.7</source> <target>1.7</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<suiteXmlFiles> <suiteXmlFile>testng.xml</suiteXmlFile> </suiteXmlFiles>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.9.10</version>
<scope>test</scope>
<classifier>jdk17</classifier>
</dependency> </dependencies></project>
作者:
Alawn
时间:
2017-12-29 13:53
谢谢
欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/)
Powered by Discuz! X3.2