我试图使用maven sure-fire-plugin运行测试套件(.launch文件)。 我在src / test / resources中有文件TestSuite.launch。 这是我的pom.xml文件:
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<includes>
<include>**/TestSuite.launch</include>
</includes>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
当我尝试运行“mvn test&#39;从命令行我得到了ClassNotFoundException。
是否可以从maven运行.launch文件(对于运行良好的.java类)?如果是,我该怎么做?
问候