maven 插件下载失败
- 去阿里云搜索是否存在相关插件 https://developer.aliyun.com/mvn/search
在dependencies标签里边添加标签依赖类似
<dependency>
<groupId>com.spotify</groupId>
<artifactId>docker-maven-plugin</artifactId>
<version>1.2.1</version>
<type>maven-plugin</type>
</dependency>
刷新依赖即可
maven 父子依赖报错
如果maven项目有父子项目结构,但是子项目想独立继承springboot工程,可以在子项目中使用这个标签<relativePath />
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.6.4</version>
<relativePath />
</parent>
springbootTest 报错【SpringBoot】报错:java.lang.NoClassDefFoundError: org/springframework/boot/ApplicationContextFactory
降级pom里边的springboot版本,junit版本和springboottest的版本不一致导致的。