Maven引入spring-cloud-starter-eureka-server打包时报错

RT

pom.xml中使用


	org.springframework.boot
	spring-boot-starter-parent
	1.5.2.RELEASE
	


	
		org.springframework.cloud
		spring-cloud-starter-eureka-server
	
	

导致在下载eureka-server相关包时,一直报错,下载失败。
解决方案:将spring-boot-starter-parent的版本号换成1.5.3.RELEASE。
更换后,仍有报错信息:Failed to execute goal org.springframework.boot:Spring-boot-maven-plugin。。。
这是因为在pom.xml中引入了


	
		org.springframework.boot
		spring-boot-maven-plugin
	

因此打包时会去扫描main方法入口,必须在src/main/java下创建一个spring-boot启动类或者将上述的引用注释掉。

你可能感兴趣的:(Maven引入spring-cloud-starter-eureka-server打包时报错)