我有一个名为src / it / java的新测试文件(用于集成测试)。 我把它添加到我的pom.xml(在我的简单示例应用程序中)
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.7</version>
<executions>
<execution>
<id>add-test-source</id>
<phase>generate-test-sources</phase>
<goals>
<goal>add-test-source</goal>
</goals>
<configuration>
<sources>
<source>src/it/java</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
然而,当我在intellij中打开我的项目(通过在intellij中打开pom.xml)时,src / it / java不被它视为源文件夹。
我应该在我的pom.xml中放置什么才能让intellij将src / it / java识别为源文件夹
感谢