spring-cloud-static
spring-cloud-static copied to clipboard
Group-IDs in Quick Start POM are missing
See https://twitter.com/rotnroll666/status/866340220664516608
I would have fixed that myself, but I was already happy finding that place here.
Idk if i understood "not on my desk" correct, but this happens on latest Safari on macOS as well as on iOS :
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>