Spring boot 插件';org.codehaus.mojo:jaxb2maven插件:3.6.3';找不到

Spring boot 插件';org.codehaus.mojo:jaxb2maven插件:3.6.3';找不到,spring-boot,intellij-idea,soap,maven-plugin,Spring Boot,Intellij Idea,Soap,Maven Plugin,我正在使用IntelliJ IDEA生成一个spring boot soap Web服务 在pom.xml文件中,我得到了这个错误 未找到插件“org.codehaus.mojo:jaxb2-maven-Plugin:3.6.3” 15 org.springframework.boot 何时何地出现此错误?请张贴完整的输出。Maven构建是否可以从操作系统终端运行?Maven中央存储库中似乎不存在此插件版本。2.4版本适合我。你建议下载ApacheMaven2而不是ApacheMaven3吗?

我正在使用IntelliJ IDEA生成一个spring boot soap Web服务 在pom.xml文件中,我得到了这个错误

未找到插件“org.codehaus.mojo:jaxb2-maven-Plugin:3.6.3”


15
org.springframework.boot

何时何地出现此错误?请张贴完整的输出。Maven构建是否可以从操作系统终端运行?Maven中央存储库中似乎不存在此插件版本。
2.4
版本适合我。你建议下载ApacheMaven2而不是ApacheMaven3吗?当我编写这个插件org.codehaus.mojo时,我得到了正确的错误,但仍然没有在问题选项卡中工作。我得到了这个错误:plugin'org.codehaus.mojo:jaxb2 Maven plugin:2.3.5'没有找到
<properties>
    <java.version>15</java.version>
</properties>

<dependencies>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web-services</artifactId>
    </dependency>
    <dependency>
        <groupId>wsdl4j</groupId>
        <artifactId>wsdl4j</artifactId>
    </dependency>

    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-test</artifactId>
        <scope>test</scope>
        <exclusions>
            <exclusion>
                <groupId>org.junit.vintage</groupId>
                <artifactId>junit-vintage-engine</artifactId>
            </exclusion>
        </exclusions>
    </dependency>
</dependencies>

<build>
    <plugins>
        <plugin>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-maven-plugin</artifactId>
        </plugin>
        <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>jaxb2-maven-plugin</artifactId>
            <version>2.5.0</version>
            <executions>
                <execution>
                    <id>xjc</id>
                    <goals>
                        <goal>xjc</goal>
                    </goals>
                </execution>
            </executions>
            <configuration>
                <sources>
                    <source>${project.basedir}/src/main/resources/countries.xsd</source>
                </sources>
            </configuration>
        </plugin>
    </plugins>

</build>
</project>