From fb737e52f8ef9672818b8cef38d9b09910811105 Mon Sep 17 00:00:00 2001 From: buildmaster Date: Fri, 28 Aug 2020 16:40:19 +0000 Subject: [PATCH] Going back to snapshots --- README.adoc | 59 +++++++++---------- docs/pom.xml | 2 +- pom.xml | 2 +- spring-cloud-stream-binder-test/pom.xml | 2 +- spring-cloud-stream-integration-tests/pom.xml | 2 +- spring-cloud-stream-reactive/pom.xml | 2 +- .../pom.xml | 2 +- spring-cloud-stream-test-support/pom.xml | 2 +- spring-cloud-stream/pom.xml | 2 +- 9 files changed, 37 insertions(+), 38 deletions(-) diff --git a/README.adoc b/README.adoc index 7844f3277..1ba96cf50 100644 --- a/README.adoc +++ b/README.adoc @@ -4,7 +4,6 @@ Manual changes to this file will be lost when it is generated again. Edit the files in the src/main/asciidoc/ directory instead. //// - :jdkversion: 1.8 :github-tag: master :github-repo: spring-cloud/spring-cloud-stream @@ -109,29 +108,29 @@ Modify the `com.example.loggingconsumer.LoggingConsumerApplication` class to loo @SpringBootApplication public class LoggingConsumerApplication { - public static void main(String[] args) { - SpringApplication.run(LoggingConsumerApplication.class, args); - } + public static void main(String[] args) { + SpringApplication.run(LoggingConsumerApplication.class, args); + } - @Bean - public Consumer log() { - return person -> { - System.out.println("Received: " + person); - }; - } + @Bean + public Consumer log() { + return person -> { + System.out.println("Received: " + person); + }; + } - public static class Person { - private String name; - public String getName() { - return name; - } - public void setName(String name) { - this.name = name; - } - public String toString() { - return this.name; - } - } + public static class Person { + private String name; + public String getName() { + return name; + } + public void setName(String name) { + this.name = name; + } + public String toString() { + return this.name; + } + } } ---- @@ -150,13 +149,13 @@ You should see following output: [source] ---- - --- [ main] c.s.b.r.p.RabbitExchangeQueueProvisioner : declaring queue for inbound: input.anonymous.CbMIwdkJSBO1ZoPDOtHtCg, bound to: input - --- [ main] o.s.a.r.c.CachingConnectionFactory : Attempting to connect to: [localhost:5672] - --- [ main] o.s.a.r.c.CachingConnectionFactory : Created new connection: rabbitConnectionFactory#2a3a299:0/SimpleConnection@66c83fc8. . . - . . . - --- [ main] o.s.i.a.i.AmqpInboundChannelAdapter : started inbound.input.anonymous.CbMIwdkJSBO1ZoPDOtHtCg - . . . - --- [ main] c.e.l.LoggingConsumerApplication : Started LoggingConsumerApplication in 2.531 seconds (JVM running for 2.897) + --- [ main] c.s.b.r.p.RabbitExchangeQueueProvisioner : declaring queue for inbound: input.anonymous.CbMIwdkJSBO1ZoPDOtHtCg, bound to: input + --- [ main] o.s.a.r.c.CachingConnectionFactory : Attempting to connect to: [localhost:5672] + --- [ main] o.s.a.r.c.CachingConnectionFactory : Created new connection: rabbitConnectionFactory#2a3a299:0/SimpleConnection@66c83fc8. . . + . . . + --- [ main] o.s.i.a.i.AmqpInboundChannelAdapter : started inbound.input.anonymous.CbMIwdkJSBO1ZoPDOtHtCg + . . . + --- [ main] c.e.l.LoggingConsumerApplication : Started LoggingConsumerApplication in 2.531 seconds (JVM running for 2.897) ---- Go to the RabbitMQ management console or any other RabbitMQ client and send a message to `input.anonymous.CbMIwdkJSBO1ZoPDOtHtCg`. @@ -331,4 +330,4 @@ added after the original pull request but before a merge. message (where XXXX is the issue number). -// ====================================================================================== +// ====================================================================================== \ No newline at end of file diff --git a/docs/pom.xml b/docs/pom.xml index dabf16d4f..b3143eb97 100644 --- a/docs/pom.xml +++ b/docs/pom.xml @@ -7,7 +7,7 @@ org.springframework.cloud spring-cloud-stream-parent - 3.0.8.RELEASE + 3.0.8.BUILD-SNAPSHOT pom spring-cloud-stream-core-docs diff --git a/pom.xml b/pom.xml index 9db7a9f40..15f067cf5 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 spring-cloud-stream-parent - 3.0.8.RELEASE + 3.0.8.BUILD-SNAPSHOT pom org.springframework.cloud diff --git a/spring-cloud-stream-binder-test/pom.xml b/spring-cloud-stream-binder-test/pom.xml index b9d03aab9..b08f56049 100644 --- a/spring-cloud-stream-binder-test/pom.xml +++ b/spring-cloud-stream-binder-test/pom.xml @@ -13,7 +13,7 @@ org.springframework.cloud spring-cloud-stream-parent - 3.0.8.RELEASE + 3.0.8.BUILD-SNAPSHOT diff --git a/spring-cloud-stream-integration-tests/pom.xml b/spring-cloud-stream-integration-tests/pom.xml index 1de4af464..bbbb2791e 100644 --- a/spring-cloud-stream-integration-tests/pom.xml +++ b/spring-cloud-stream-integration-tests/pom.xml @@ -12,7 +12,7 @@ org.springframework.cloud spring-cloud-stream-parent - 3.0.8.RELEASE + 3.0.8.BUILD-SNAPSHOT diff --git a/spring-cloud-stream-reactive/pom.xml b/spring-cloud-stream-reactive/pom.xml index c3190ec87..876050db5 100644 --- a/spring-cloud-stream-reactive/pom.xml +++ b/spring-cloud-stream-reactive/pom.xml @@ -5,7 +5,7 @@ org.springframework.cloud spring-cloud-stream-parent - 3.0.8.RELEASE + 3.0.8.BUILD-SNAPSHOT 4.0.0 diff --git a/spring-cloud-stream-test-support-internal/pom.xml b/spring-cloud-stream-test-support-internal/pom.xml index b03bc6a09..e16adeb62 100644 --- a/spring-cloud-stream-test-support-internal/pom.xml +++ b/spring-cloud-stream-test-support-internal/pom.xml @@ -6,7 +6,7 @@ org.springframework.cloud spring-cloud-stream-parent - 3.0.8.RELEASE + 3.0.8.BUILD-SNAPSHOT spring-cloud-stream-test-support-internal Set of classes and utility code that may assist in testing both diff --git a/spring-cloud-stream-test-support/pom.xml b/spring-cloud-stream-test-support/pom.xml index 2ed216d17..9a00e835e 100644 --- a/spring-cloud-stream-test-support/pom.xml +++ b/spring-cloud-stream-test-support/pom.xml @@ -6,7 +6,7 @@ org.springframework.cloud spring-cloud-stream-parent - 3.0.8.RELEASE + 3.0.8.BUILD-SNAPSHOT spring-cloud-stream-test-support A set of classes to ease testing of Spring Cloud Stream modules. diff --git a/spring-cloud-stream/pom.xml b/spring-cloud-stream/pom.xml index 8618db7aa..0a0f75092 100644 --- a/spring-cloud-stream/pom.xml +++ b/spring-cloud-stream/pom.xml @@ -12,7 +12,7 @@ org.springframework.cloud spring-cloud-stream-parent - 3.0.8.RELEASE + 3.0.8.BUILD-SNAPSHOT