在“构建”或“更新 Maven 项目”期间发生内部错误

时间:2021-03-19 17:24:00

标签: java spring-boot maven web-services pom.xml

将这个插件添加到我的 pom.xml 后,我收到了这个错误。 我正在使用 JDK 8

            <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>jaxb2-maven-plugin</artifactId>
            <version>1.6</version>
            <executions>
                <execution>
                    <id>xjc</id>
                    <goals>
                        <goal>xjc</goal>
                    </goals>
                </execution>
            </executions>
            <configuration>
                <schemaDirectory>${project.basedir}/src/main/resources</schemaDirectory>
                <outputDirectory>${project.basedir}/src/main/java</outputDirectory>
                <clearOutputDir>false</clearOutputDir>
            </configuration>
        </plugin>

0 个答案:

没有答案