将generated-sources作为源文件夹添加到Eclipse

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将generated-sources作为源文件夹添加到Eclipse相关的知识,希望对你有一定的参考价值。

我正在使用maven-jaxb-plugin来生成基于xsd文件的类文件源:

<plugin>
                <groupId>com.sun.tools.xjc.maven2</groupId>
                <artifactId>maven-jaxb-plugin</artifactId>
                <version>1.1.1</version>
                <executions>
                    <execution>
                        <id>jaxb-xsd-constants</id>
                        <phase>generate-sources</phase>
                        <goals>
                            <goal>generate</goal>
                        </goals>
                        <configuration>
                            <generatePackage>com.mypackage</generatePackage>
                            <schemaDirectory>${basedir}/src/main/resources/xsd/mylist</schemaDirectory>
                            <includeSchemas>
                                <includeSchema>mylist.xsd</includeSchema>
                            </includeSchemas>
                            <strict>true</strict>
                        </configuration>
                    </execution>                    
                </executions>
            </plugin>

但是我需要将这些文件夹添加为源文件夹,以便Eclipse加载编译它们:

如何使用插件或其他方法将文件夹添加为源文件夹?而不必手动添加这些文件夹。

答案

尝试使用这个maven插件..

            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>build-helper-maven-plugin</artifactId>
                <version>1.1</version>
                <executions>
                    <execution>
                        <id>add-source</id>
                        <phase>generate-sources</phase>
                        <goals>
                            <goal>add-source</goal>
                        </goals>
                        <configuration>
                            <sources>
                                <source>target/generated-sources/xjc</source>
                            </sources>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
另一答案

两种选择:

  • 使用现代插件,自动添加源dirs(maven-jaxb2-plugin does this)。
  • 对qazxsw poi使用类似build-helper-maven-plugin的东西。

免责声明:我是上面提到的add source folders的作者。

另一答案

我正在努力通过vert.x代理服务添加一些生成的文件。以下是我在Eclipse中将生成的文件添加到项目中的步骤。

  1. 右键单击生成的文件夹(在您的情况下为mylist)
  2. 单击Build Path
  3. 然后单击“用作源文件夹”

你去吧! Eclipse将添加生成文件的文件夹。这是添加生成的文件后我的项目结构的样子。

以上是关于将generated-sources作为源文件夹添加到Eclipse的主要内容,如果未能解决你的问题,请参考以下文章

M2E 并将 maven 生成的源文件夹作为 eclipse 源文件夹

@Entity注解的类编译后未自动生成动态查询类的解决办法

Maven:从编译中排除目标/生成源

脚手架工程发布与使用

脚手架工程发布与使用

脚手架工程发布与使用