我创建了一个放置 xsd 文件的 maven 项目然后我运行:
mvn clean package
生成的只有两个空目录:
目标
-- 生成源
---- 注释
---- 测试注释
我正在使用教程中的这个插件:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jaxb2-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>xjc</goal>
</goals>
</execution>
</executions>
<configuration>
<schemaDirectory>src/main/webapp/schemas/</schemaDirectory>
</configuration>
</plugin>