简体   繁体   English

Spring tooluite显示错误 <execution> 对于maven-jaxb2-plugin

[英]Spring toolsuite shows error on <execution> for maven-jaxb2-plugin

I am using Spring Tool Suite version 3.7.0.RELEASE and I'm trying out an import of a WSDL offered by Amazon. 我正在使用Spring Tool Suite版本3.7.0.RELEASE,我正在尝试导入亚马逊提供的WSDL。 The import succeeds, but Eclipse gives an error message on the tag. 导入成功,但Eclipse在标记上给出了错误消息。

I am using the following pom.xml: 我使用以下pom.xml:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0    http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.example</groupId>
<artifactId>blafoo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>blafoo</name>

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>1.2.5.RELEASE</version>
</parent>

<properties>
    <java.version>1.8</java.version>
</properties>

<dependencies>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.ws</groupId>
        <artifactId>spring-ws-core</artifactId>
    </dependency>
</dependencies>

<build>
    <plugins>
        <plugin>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-maven-plugin</artifactId>
        </plugin>
        <!-- tag::wsdl[] -->
        <plugin>
            <groupId>org.jvnet.jaxb2.maven2</groupId>
            <artifactId>maven-jaxb2-plugin</artifactId>
            <version>0.12.3</version>
            <executions>
                <execution>
                    <goals>
                        <goal>generate</goal>
                    </goals>
                </execution>
            </executions>
            <configuration>
                <schemaLanguage>WSDL</schemaLanguage>
                <generatePackage>be.goedkoperzoeken.amazonapi.wsdl</generatePackage>
                <schemas>
                    <schema>
                        <url>http://webservices.amazon.com/AWSECommerceService/AWSECommerceService.wsdl</url>
                    </schema>
                </schemas>
            </configuration>
        </plugin>
        <!-- end::wsdl[] -->
    </plugins>
</build>
</project>

When hovering over this tag, I get the following error message: 当鼠标悬停在此标记上时,我收到以下错误消息:

Execution default of goal org.jvnet.jaxb2.maven2:maven-jaxb2-plugin:0.12.3:generate failed: A required class was missing while executing org.jvnet.jaxb2.maven2:maven-jaxb2-plugin:0.12.3:generate: com/sun/xml/bind/v2/model/core/TypeInfoSet

I was able to fix this by putting my <plugins> inside of a <pluginManagement> tag. 我能够通过将<plugins>放在<pluginManagement>标记内来解决这个问题。 Somehow this makes it different for maven and it actually picks up the correct information. 不知何故,这使得它与maven不同,它实际上获取了正确的信息。

Putting it in <pluginManagement> means it won't get executed. 将它放在<pluginManagement>意味着它不会被执行。 Plugin version 0.13.2 fixes this issue. 插件版本0.13.2修复了此问题。

            <plugin>
                <groupId>org.jvnet.jaxb2.maven2</groupId>
                <artifactId>maven-jaxb2-plugin</artifactId>
                <version>0.13.2</version>
                <executions>
                    <execution>
                        <goals>
                            <goal>generate</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM