Maven环境配好后无法在eclipse完整创建

配好Maven环境后想尝试创建项目,但里面不完整且无法添加依赖。

img

img

https://blog.csdn.net/hjseo_seg/article/details/126628512 参考下

这不是挺完整的嘛,添加依赖,你需要在如下节点下加

     <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

img