我进口了Spring In Action 3
. 我如何必须修改pom.xml
torun a Main class
而不是 Junit 测试或附加到 Junit 测试?我在父 pom.xml 中添加了以下插件,但这不会执行。
<plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.2.1</version> <executions> <execution> <goals> <goal>java</goal> </goals> </execution> </executions> <configuration> <mainClass>com.springinaction.knights.KnightMain</mainClass> </configuration> </plugin>