簡體   English   中英

找不到架構 XJC

[英]No schemas have been found | XJC

有人可以幫我解決這個問題。 我在同一目錄中有兩個以上的架構文件,並嘗試在Maven中使用xjc生成Java類。

這是我的pom.xml

<plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>jaxb2-maven-plugin</artifactId>
            <version>${jaxb2.version}</version>
            <executions>
                <execution>
                    <id>xjc</id>
                    <goals>
                        <goal>xjc</goal>
                    </goals>
                    <configuration>
                        <clearOutputDir>false</clearOutputDir>
                        <extension>true</extension>
                        <schemaFiles>${root.dir}/schemas/PnTCacheSchema.xsd</schemaFiles>
                        <schemaDirectory>${root.dir}/schemas/</schemaDirectory>
                        <packageName>com.superpages.nbt.gen.pnt</packageName>
                        <outputDirectory>${root.dir}/nbt/src</outputDirectory>
                    </configuration>
                </execution>
                <execution>
                    <id>xjc1</id>
                    <goals>
                        <goal>xjc</goal>
                    </goals>
                    <configuration>
                        <clearOutputDir>false</clearOutputDir>
                        <extension>true</extension>
                        <schemaFiles>${root.dir}/schemas/AdCacheSchema.xsd</schemaFiles>
                        <schemaDirectory>${root.dir}/schemas/</schemaDirectory>
                        <packageName>com.superpages.nbt.gen.cache</packageName>
                        <outputDirectory>${root.dir}/nbt/src</outputDirectory>
                    </configuration>
                </execution>
            </executions>
        </plugin>

獲取此異常

[ERROR] Failed to execute goal org.codehaus.mojo:jaxb2-maven-plugin:1.6:xjc (default-cli) on project gypsygen: No schemas have been found -> [Help 1]

嘗試將<plugins>標記<pluginManagement> tag.<pluginManagement> tag.

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM