在STS的演示Maven项目中使用pom.xml处理生命周期处理指令时出错

时间:2018-06-05 17:14:45

标签: java spring maven pom.xml spring-tool-suite

我很难通过使用Spring创建RESTful Web服务的指南。这是因为事情不会运行,表面上是因为pom.xml文件存在问题。它报告的错误是“处理生命周期处理错误”。当我尝试在这个项目的命令行中使用Maven做事时,我得到错误不可解析的pom。我正在STS工作一个非常简单的项目,只是为了设置东西。这里没有类似的问题有适合我的解决方案。我在这里包含了我的pom.xml文件,以防它有任何明显的错误:

http://maven.apache.org/xsd/maven-4.0.0.xsd">     4.0.0

<groupId>org.springframework</groupId>
<artifactId>gs-rest-service</artifactId>
<version>0.1.0</version>

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

<dependencies>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-test</artifactId>
        <scope>test</scope>
    </dependency>
    <dependency>
        <groupId>com.jayway.jsonpath</groupId>
        <artifactId>json-path</artifactId>
        <scope>test</scope>
    </dependency>
</dependencies>

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


<build>
    <plugins>
        <plugin>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-maven-plugin</artifactId>
        </plugin>
    </plugins>
</build>

<repositories>
    <repository>
        <id>spring-releases</id>
        <url>https://repo.spring.io/libs-release</url>
    </repository>
</repositories>
<pluginRepositories>
    <pluginRepository>
        <id>spring-releases</id>
        <url>https://repo.spring.io/libs-release</url>
    </pluginRepository>
</pluginRepositories>

1 个答案:

答案 0 :(得分:0)

在我弄清楚时回答我自己的问题:问题是由于父母的版本。 2.0.2.RELEASE导致此错误。使用2.0.1.RELEASE来修复问题。