Java:获取Maven'执行'状态

时间:2015-10-30 12:08:12

标签: java maven selenium-webdriver pom.xml

我的pom.xml文件中有以下插件块正在执行。

<plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>exec-maven-plugin</artifactId>
    <version>1.4.0</version>
    <executions>
        <execution>
            <phase>test-compile</phase>
            <goals>
                <goal>java</goal>
            </goals>
            <configuration>
                <classpathScope>test</classpathScope>
                <includeProjectDependencies>true</includeProjectDependencies>
                <executable>java</executable>
                <mainClass>com.capco.qa.common.utils.TestDriveFileGenerator</mainClass>
            </configuration>
        </execution>
    </executions>
</plugin>

我可以在Java程序中获取上述主类执行的状态吗?基本上,我想在if..else块中使用它来确定要使用的配置文件。

0 个答案:

没有答案