XMLBeans Maven插件未使用XSD

时间:2019-06-07 11:55:43

标签: java maven xmlbeans xmlbeans-maven-plugin

我正在尝试使用maven插件生成XMLBeans类。我已经在POM文件中进行了配置,但是每次我进行全新安装时,我都会在调试日志中看到这一点:

  

[DEBUG] XSD文件数:0

     

[DEBUG] WSDL文件数:0

     

[INFO]没有生成。

我的插件定义为:

        <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>xmlbeans-maven-plugin</artifactId>
            <version>2.3.3.002</version>
            <executions>
                <execution>
                    <id>xsd-to-java-xmlbeans</id>
                    <phase>generate-sources</phase>
                    <goals>
                        <goal>xmlbeans</goal>
                    </goals>
                    <inherited>true</inherited>
                    <configuration>
                        <classGenerationDirectory>${basedir}\src\main\java\</classGenerationDirectory>
                        <compiler>1.8</compiler>
                        <debug>true</debug>
                        <download>true</download>
                        <outputJar>subInterfaceXSD.jar</outputJar>
                        <quiet>false</quiet>
                        <schemaDirectory>${project.basedir}\src\main\resources\XSDFiles\</schemaDirectory>
                        <generatedSchemaDirectory>${project.basedir}\src\main\resources\XSDFiles\</generatedSchemaDirectory>
                        <sourceGenerationDirectory>${basedir}\src\main\java\</sourceGenerationDirectory>                            
                        <verbose>true</verbose>
                    </configuration>
                </execution>
            </executions>
        </plugin>

1 个答案:

答案 0 :(得分:0)

这是一个有问题的插件。切换到旧版本很有帮助。