我使用的<st> sts工具在pom中出错

时间:2019-03-26 06:59:17

标签: spring-boot pom.xml spring-boot-maven-plugin parent-pom

我试图在pom.xml文件中创建一个新的spring starter项目,我遇到了<parent>标签错误

我已在下面复制了pom文件。

http://maven.apache.org/xsd/maven-4.0.0.xsd“>     4.0.0              org.springframework.boot         弹簧启动启动器父母         1.5.10发布          com.example     springboot-mongodb-示例     0.0.1-快照     springboot-mongodb-示例     Spring Boot的演示项目

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

<dependencies>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-data-mongodb</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>

    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-devtools</artifactId>
        <scope>runtime</scope>
    </dependency>
    <dependency>
        <groupId>org.projectlombok</groupId>
        <artifactId>lombok</artifactId>
        <optional>true</optional>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-test</artifactId>
        <scope>test</scope>
    </dependency>
</dependencies>

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

为什么我遇到错误。一无所有,我在代码中所做的只是创建了一个新项目。请帮我出来。谢谢。

0 个答案:

没有答案