将项目打开为pom.xml时,在intellij中添加src / it / java作为测试文件夹

时间:2011-09-06 07:28:54

标签: eclipse maven-2 maven intellij-idea

我有一个名为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识别为源文件夹

感谢

1 个答案:

答案 0 :(得分:2)

对于由插件配置的路径,您应该运行生成源和更新文件夹see the FAQ