spring-cloud / spring-cloud-static

Static resources for the Spring Cloud website
http://cloud.spring.io/spring-cloud-static/
26 stars 25 forks source link

Group-IDs in Quick Start POM are missing #4

Open michael-simons opened 7 years ago

michael-simons commented 7 years ago

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

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

michael-simons commented 7 years ago

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

img_3026

kuchaguangjie commented 7 years ago

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>