spring-attic / spring-cloud-rsocket

This repository is now inactive. Please see https://github.com/rsocket-routing/
https://github.com/rsocket-routing/
Apache License 2.0
49 stars 13 forks source link

Document how to include project while in incubator. #5

Closed FWinkler79 closed 4 years ago

FWinkler79 commented 4 years ago

Question:

Apparently, this incubator project was moved out of Spring Cloud Gateway. Since I was referring to SNAPSHOT builds I am now missing the required dependencies. Also I could not find this project in https://repo.spring.io/snapshot/org/springframework/cloud/.

How can I reference this project from Maven? And should I at all, or is this now being revised?

Thanks!

spencergibb commented 4 years ago

for a bit you'll need to build it yourself until I get snapshot builds, hopefully today.

In the future.

    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>org.springframework.cloud</groupId>
                <artifactId>spring-cloud-rsocket-dependencies</artifactId>
                <version>0.2.0.BUILD-SNAPSHOT</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
    </dependencyManagement>

Then

            <dependency>
                <groupId>org.springframework.cloud</groupId>
                <artifactId>spring-cloud-rsocket-client</artifactId>
            </dependency>
            <dependency>
                <groupId>org.springframework.cloud</groupId>
                <artifactId>spring-cloud-rsocket-broker</artifactId>
            </dependency>
spencergibb commented 4 years ago

Ok, snapshots are building now.

FWinkler79 commented 4 years ago

Great! Thanks a lot.