我的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块中使用它来确定要使用的配置文件。