如何从命令提示符运行带有配置文件的testng maven项目jar作为选项

时间:2015-01-07 23:16:56

标签: maven testng

我创建了一个maven项目,它已经有了Testng脚本。我在POM.xml文件中创建了多个maven配置文件。我添加了下面的插件来为我的项目创建一个jar文件。但是如何运行这个jar文件传递maven配置文件作为选项(我没有任何主要类用于我的项目)

<build>
    <plugins>
        <plugin>
            <inherited>true</inherited>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>3.0</version>
            <configuration>
                <source>1.7</source>
                <target>1.7</target>
            </configuration>
        </plugin>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-deploy-plugin</artifactId>
            <version>2.8.1</version>
        </plugin>
    </plugins>

</build>

此致 基兰

0 个答案:

没有答案