Mojo schemagen maven插件错误地生成了类

时间:2013-05-21 14:56:14

标签: maven plugins pom.xml jaxb2 schemagen

大家早上好, 我试图在我的应用程序中使用mojo jaxb2 maven插件,但无论何时正确创建模式,在同一文件夹中它都会生成整个类(作为.class)。 我会说由于某种原因,maven /编译器正在/ schemas /文件夹中创建输出类。 关键是我想输出将在其他项目中使用的* .xsd文件。 这是我的pom的摘录:

<plugins>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>jaxb2-maven-plugin</artifactId>
                <version>1.5</version>
                <executions>
                    <execution>
                        <phase>generate-resources</phase>
                        <id>schemagen</id>
                        <goals>
                            <goal>schemagen</goal>
                        </goals>
                        <configuration>
                            <includes>
                                <include>com/delagelanden/rijee6/domain/*.java</include>
                            </includes>
                            <outputDirectory>${project.build.directory}/schemas</outputDirectory>
                             <verbose>true</verbose>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
        </plugins>

1 个答案:

答案 0 :(得分:1)

有人在这里问了同样的问题[1],这似乎是一个悬而未决的问题。

我找到的解决方案是使用maven-resources-plugin [2]中的'copy-resources'目标,仅包括.xsd文件。

        <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>jaxb2-maven-plugin</artifactId>
            <version>1.5</version>
            <executions>
                <execution>
                    <id>schemagen</id>
                    <goals>
                        <goal>schemagen</goal>
                    </goals>
                </execution>
            </executions>
            <configuration>
                <includes>
                    <include>**/*.java</include>
                </includes>
                <outputDirectory>${project.build.directory}/generated-resources/schemas</outputDirectory>
            </configuration>
        </plugin>
        <plugin>
            <artifactId>maven-resources-plugin</artifactId>
            <version>2.6</version>
            <executions>
                <execution>
                    <id>copy-resources</id>
                    <phase>process-resources</phase>
                    <goals>
                        <goal>copy-resources</goal>
                    </goals>
                    <configuration>
                        <outputDirectory>${project.build.outputDirectory}/META-INF/schema</outputDirectory>
                        <resources>
                            <resource>
                                <directory>${project.build.directory}/generated-resources/schemas</directory>
                                <includes>
                                    <include>**/*.xsd</include>
                                </includes>
                            </resource>
                        </resources>
                    </configuration>
                </execution>
            </executions>
        </plugin>

[1] http://mojo.10943.n7.nabble.com/Maven-Jaxb2-plugin-schemagen-generating-classes-td40005.html [2] http://maven.apache.org/plugins/maven-resources-plugin/examples/copy-resources.html