spring-cloud-static icon indicating copy to clipboard operation
spring-cloud-static copied to clipboard

Group-IDs in Quick Start POM are missing

Open michael-simons opened this issue 8 years ago • 2 comments

See https://twitter.com/rotnroll666/status/866340220664516608

I would have fixed that myself, but I was already happy finding that place here.

michael-simons avatar May 21 '17 17:05 michael-simons

Idk if i understood "not on my desk" correct, but this happens on latest Safari on macOS as well as on iOS :

img_3026

michael-simons avatar May 21 '17 22:05 michael-simons

I saw the same issue, <groupId> must be filled as <groupId>org.springframework.cloud</groupId> for both of the 2 dependencies before maven can compile the project correctly.

Thus become:


	<dependencies>
		<dependency>
			<groupId>org.springframework.cloud</groupId>
			<artifactId>spring-cloud-starter-config</artifactId>
		</dependency>
		<dependency>
			<groupId>org.springframework.cloud</groupId>
			<artifactId>spring-cloud-starter-eureka</artifactId>
		</dependency>
	</dependencies>

kuchaguangjie avatar Jul 24 '17 23:07 kuchaguangjie