新建springboot项目报Unresolved plugin: ‘org.apache.maven.plugins:maven-surefire-plugin:3.1.2’
缺什么插件 引入什么插件的依赖就行
<dependency><groupId>org.apache.maven.plugins</groupId><artifactId>maven-install-plugin</artifactId><version>your version</version><type>maven-plugin</type></dependency><dependency><groupId>org.apache.maven.plugins</groupId><artifactId>maven-deploy-plugin</artifactId><version>your version</version><type>maven-plugin</type></dependency><dependency><groupId>org.apache.maven.plugins</groupId><artifactId>maven-jar-plugin</artifactId><version>your version</version><type>maven-plugin</type></dependency><dependency><groupId>org.apache.maven.plugins</groupId><artifactId>maven-resources-plugin</artifactId><version>your version</version><type>maven-plugin</type></dependency><dependency><groupId>org.apache.maven.plugins</groupId><artifactId>maven-surefire-plugin</artifactId><version>your version</version><type>maven-plugin</type></dependency><dependency><groupId>org.apache.maven.plugins</groupId><artifactId>maven-site-plugin</artifactId><version>your version</version><type>maven-plugin</type></dependency>
添加之后