我正在使用 xmlbeans 生成一些 java 类。我在我的项目中使用 maven 3。我已经包含了依赖项和插件详细信息,如下所示。
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>xmlbeans-maven-plugin</artifactId>
<version>2.3.3</version>
<executions>
<execution>
<goals>
<goal>xmlbeans</goal>
</goals>
</execution>
</executions>
<inherited>true</inherited>
<configuration>
<schemaDirectory>src/main/xsd</schemaDirectory>
</configuration>
</plugin>
当我运行一个干净的包目标时,我得到编译器错误只是因为在类路径中找不到使用 xmlbeans 生成的引用的类。这是因为 xmlbeans 类没有编译到正确的目录结构中。相反,它只是将它放在 target\classes\aseXMLR30 中(它应该在正式结构中,例如:com.ex.first)
我已经用谷歌搜索并阅读了许多博客,到目前为止没有任何帮助!任何回复/答案都非常感谢!