如何在目标目录下添加文件夹到Java Build path Source in eclipse

时间:2016-04-05 03:14:41

标签: eclipse maven

我想在目标目录下添加一个生成的文件夹来构建路径。

生成源代码后,我可以在相同的 pom.xml 中执行此操作。 我尝试过如下。那没有用。

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-eclipse-plugin</artifactId>
    <version>2.10</version>

    <configuration>
        <sourceExcludes>
        <!-- <sourceExclude>**/.svn/**</sourceExclude> -->
        </sourceExcludes>
        <sourceIncludes>
            <sourceInclude>target/generated-sources/xjc</sourceInclude>
        </sourceIncludes>
    </configuration>
</plugin>             

请帮忙

0 个答案:

没有答案