Failed to resolve org.junit.platform:junit-platform-launcher:1.5.2 错误的解决方案

运行springboot项目时出现的问题:Failed to resolve org.junit.platform:junit-platform-launcher:1.5.2

解决方案:

1、确保pom.xml文件中对Junit的依赖存在,没有添加如下:

<dependency>
			<groupId>org.springframework.bootgroupId>
			<artifactId>spring-boot-starter-testartifactId>
			<scope>testscope>
			<exclusions>
				<exclusion>
					<groupId>org.junit.vintagegroupId>
					<artifactId>junit-vintage-engineartifactId>
				exclusion>
			exclusions>
dependency>

2、确保Maven的配置文件即settings.xml文件中的下载地址正确,我的下载地址如下:


		<mirror>
			<id>alimavenid>
			<name>aliyun mavenname>
			<url>http://maven.aliyun.com/nexus/content/groups/public/url>
			<mirrorOf>centralmirrorOf>
		mirror>
		<mirror>
			<id>centralid>
			<name>Maven Repository Switchboardname>
			<url>http://repo1.maven.org/maven2/url>
			<mirrorOf>centralmirrorOf>mirror>
		<mirror>
			<id>repo2id>
			<mirrorOf>centralmirrorOf>
			<name>Human Readable Name for this Mirror.name>
			<url>http://repo2.maven.org/maven2/url>mirror>
		<mirror>
		<id>ibiblioid>
			<mirrorOf>centralmirrorOf>
			<name>Human Readable Name for this Mirror.name>
			<url>http://mirrors.ibiblio.org/pub/mirrors/maven2/url>
		mirror>

		<mirror>
			<id>maven.net.cnid>
			<name>oneof the central mirrors in chinaname>
			<url>http://maven.net.cn/content/groups/public/url>
			<mirrorOf>centralmirrorOf>
		mirror>

3、最后一个比较奇葩的问题,可能是网络问题!!!我就是用家里的网络在自动下载一些文件的时候卡壳,最后出现的上述错误。一定要注意,最后换了手机热点成功的。

你可能感兴趣的:(springboot,spring,boot,maven,java,xml)