1

おはようございます、私は自分のアプリケーションで mojo jaxb2 maven プラグインを使用しようとしていますが、スキーマが適切に作成されるたびに、同じフォルダーにクラス全体が (.class として) 生成されます。何らかの理由で、maven/compiler が /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>
4

1 に答える 1

1

誰かがここ [1] で同じ質問をしましたが、これは未解決の問題のようです。

私が見つけた解決策は、.xsd ファイルのみを含む maven-resources-plugin [2] の「copy-resources」ゴールを使用することでした。

        <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

于 2013-07-23T06:58:44.907 に答える