从Maven项目中的xsd文件生成类

时间:2013-08-16 15:33:05

标签: spring web-services maven xsd

我创建了一个放置xsd文件的maven项目 然后我跑:

mvn clean package

生成的只有两个空目录:

  

     

- generated-sources

     

----注释

     

---- test-annotations

我在教程中使用此插件:

<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>

1 个答案:

答案 0 :(得分:0)

我明白了, 我必须运行此命令行:

mvn -X clean jaxb2:xjc

而不是

mvn clean package

由于