码迷,mamicode.com
首页 > 其他好文 > 详细

Maven项目中,命令执行特定的testng.xml配置文件

时间:2021-05-24 12:05:49      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:apach   enc   执行   配置文件   sed   out   pre   XML   testng   

<?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>org.example</groupId>
    <artifactId>TheDemo</artifactId>
    <version>1.0-SNAPSHOT</version>
    <dependencies>
      ...
    </dependencies>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>3.0.0-M5</version>
                <configuration>
                    <!-- <suiteXmlFile>${testng.xml}</suiteXmlFile>配置,然后执行:mvn test -Dtestng.xml=xxx.xml(需要执行testng文件名) -->
                    <suiteXmlFiles>
                        <suiteXmlFile>${testng.xml}</suiteXmlFile>
                    </suiteXmlFiles>
                    <reportsDirectory>${basedir}/test-out</reportsDirectory>

                </configuration>
            </plugin>
            <plugin>
              
            </plugin>
        </plugins>
    </build>

</project>

Maven项目中,命令执行特定的testng.xml配置文件

标签:apach   enc   执行   配置文件   sed   out   pre   XML   testng   

原文地址:https://www.cnblogs.com/zizhuxuexi/p/14772947.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!