大家早上好,我正在尝试在我的应用程序中使用 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>