-1
我正在通過「mvn test」的maven執行java「main」類,它在cmd提示符下按預期工作。 Main類按預期生成XML輸出。如何在TeamCity中執行/配置相同。如何通過maven執行java主類並通過teamcity執行相同
我的pom.xml
<build>
\t \t <plugins>
\t \t <plugin>
\t \t \t <groupId>org.codehaus.mojo</groupId>
\t \t \t <artifactId>exec-maven-plugin</artifactId>
\t \t \t <version>1.1.1</version>
\t \t \t <executions>
\t \t \t <execution>
\t \t \t \t <phase>test</phase>
\t \t \t \t <goals>
\t \t \t \t \t <goal>java</goal>
\t \t \t \t </goals>
\t \t \t \t <configuration>
\t \t \t \t \t <mainClass>com.test.scripts.TestScript</mainClass>
\t \t \t \t </configuration>
\t \t \t </execution>
\t \t \t </executions>
\t \t </plugin>
\t \t </plugins>
\t \t </build>
\t \t
with some dependency details.