diff --git a/README.adoc b/README.adoc index 1ba96cf50..7844f3277 100644 --- a/README.adoc +++ b/README.adoc @@ -4,6 +4,7 @@ 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 @@ -108,29 +109,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; + } + } } ---- @@ -149,13 +150,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`. @@ -330,4 +331,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 e0434c670..402e0fed1 100644 --- a/docs/pom.xml +++ b/docs/pom.xml @@ -7,7 +7,7 @@ org.springframework.cloud spring-cloud-stream-parent - 3.0.7.BUILD-SNAPSHOT + 3.0.7.RELEASE pom spring-cloud-stream-core-docs diff --git a/pom.xml b/pom.xml index ba60484e1..336653db8 100644 --- a/pom.xml +++ b/pom.xml @@ -4,12 +4,12 @@ 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.7.BUILD-SNAPSHOT + 3.0.7.RELEASE pom org.springframework.cloud spring-cloud-build - 2.3.0.RELEASE + 2.3.1.RELEASE @@ -25,7 +25,7 @@ 1.8 Dysprosium-SR6 2.1 - 3.0.9.BUILD-SNAPSHOT + 3.0.9.RELEASE true true true diff --git a/spring-cloud-stream-binder-test/pom.xml b/spring-cloud-stream-binder-test/pom.xml index f4c4d0b7c..ba7f589d7 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.7.BUILD-SNAPSHOT + 3.0.7.RELEASE diff --git a/spring-cloud-stream-integration-tests/pom.xml b/spring-cloud-stream-integration-tests/pom.xml index 91cee3141..46e701611 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.7.BUILD-SNAPSHOT + 3.0.7.RELEASE diff --git a/spring-cloud-stream-reactive/pom.xml b/spring-cloud-stream-reactive/pom.xml index 96c5cb3fd..d96dd4e8d 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.7.BUILD-SNAPSHOT + 3.0.7.RELEASE 4.0.0 diff --git a/spring-cloud-stream-test-support-internal/pom.xml b/spring-cloud-stream-test-support-internal/pom.xml index dc0831906..3ec26e69b 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.7.BUILD-SNAPSHOT + 3.0.7.RELEASE 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 f2051bd19..a3cc22797 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.7.BUILD-SNAPSHOT + 3.0.7.RELEASE 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 01242d56f..6c8e50016 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.7.BUILD-SNAPSHOT + 3.0.7.RELEASE