diff --git a/benchmarks/pom.xml b/benchmarks/pom.xml
index 7977357fe..a938c9242 100644
--- a/benchmarks/pom.xml
+++ b/benchmarks/pom.xml
@@ -22,7 +22,7 @@
Benchmarks
Benchmarks (JMH)
org.springframework.cloud
- 2.1.0.M1
+ 2.1.0.BUILD-SNAPSHOT
benchmarks
@@ -33,7 +33,7 @@
true
1.8
1.8
- 2.1.0.M3
+ 2.1.0.M1
diff --git a/config/releaser.properties b/config/releaser.properties
deleted file mode 100644
index c96cc5e20..000000000
--- a/config/releaser.properties
+++ /dev/null
@@ -1,24 +0,0 @@
-releaser.fixed-versions[spring-boot]=2.1.0.M3
-releaser.fixed-versions[spring-cloud-build]=2.1.0.M2
-releaser.fixed-versions[spring-cloud-commons]=2.1.0.M1
-releaser.fixed-versions[spring-cloud-function]=2.0.0.M2
-releaser.fixed-versions[spring-cloud-stream]=Fishtown.M3
-releaser.fixed-versions[spring-cloud-aws]=2.0.0.RELEASE
-releaser.fixed-versions[spring-cloud-bus]=2.1.0.M1
-releaser.fixed-versions[spring-cloud-task]=2.0.0.RELEASE
-releaser.fixed-versions[spring-cloud-config]=2.1.0.M1
-releaser.fixed-versions[spring-cloud-netflix]=2.1.0.M1
-releaser.fixed-versions[spring-cloud-cloudfoundry]=2.1.0.M1
-releaser.fixed-versions[spring-cloud-kubernetes]=1.0.0.M1
-releaser.fixed-versions[spring-cloud-openfeign]=2.1.0.M1
-releaser.fixed-versions[spring-cloud-consul]=2.1.0.M1
-releaser.fixed-versions[spring-cloud-gateway]=2.1.0.M1
-releaser.fixed-versions[spring-cloud-security]=2.0.0.RELEASE
-releaser.fixed-versions[spring-cloud-sleuth]=2.1.0.M1
-releaser.fixed-versions[spring-cloud-zookeeper]=2.1.0.M1
-releaser.fixed-versions[spring-cloud-contract]=2.1.0.M1
-releaser.fixed-versions[spring-cloud-gcp]=1.1.0.M2
-releaser.fixed-versions[spring-cloud-vault]=2.1.0.M1
-releaser.fixed-versions[spring-cloud-release]=Greenwich.M1
-#releaser.meta-release.projects-to-skip=spring-boot,spring-cloud-stream,spring-cloud-task,spring-cloud-security
-releaser.git.fetch-versions-from-git=false
\ No newline at end of file
diff --git a/docs/pom.xml b/docs/pom.xml
index 9146e528c..3056af1f7 100644
--- a/docs/pom.xml
+++ b/docs/pom.xml
@@ -21,7 +21,7 @@
org.springframework.cloud
spring-cloud-sleuth
- 2.1.0.M1
+ 2.1.0.BUILD-SNAPSHOT
spring-cloud-sleuth-docs
pom
diff --git a/pom.xml b/pom.xml
index 574eb64d5..9ffe72069 100644
--- a/pom.xml
+++ b/pom.xml
@@ -21,7 +21,7 @@
4.0.0
spring-cloud-sleuth
- 2.1.0.M1
+ 2.1.0.BUILD-SNAPSHOT
pom
Spring Cloud Sleuth
Spring Cloud Sleuth
@@ -29,7 +29,7 @@
org.springframework.cloud
spring-cloud-build
- 2.1.0.M2
+ 2.1.0.BUILD-SNAPSHOT
@@ -268,11 +268,11 @@
1.8
2.19.1
2.17
- 2.1.0.M2
- 2.1.0.M1
- Fishtown.M3
- 2.1.0.M1
- 2.1.0.M1
+ 2.1.0.BUILD-SNAPSHOT
+ 2.1.0.BUILD-SNAPSHOT
+ Fishtown.BUILD-SNAPSHOT
+ 2.1.0.BUILD-SNAPSHOT
+ 2.1.0.BUILD-SNAPSHOT
5.3.3
2.0.4.RELEASE
diff --git a/spring-cloud-sleuth-core/pom.xml b/spring-cloud-sleuth-core/pom.xml
index 5d0f3a4b2..ccd7ccf81 100644
--- a/spring-cloud-sleuth-core/pom.xml
+++ b/spring-cloud-sleuth-core/pom.xml
@@ -27,7 +27,7 @@
org.springframework.cloud
spring-cloud-sleuth
- 2.1.0.M1
+ 2.1.0.BUILD-SNAPSHOT
..
diff --git a/spring-cloud-sleuth-core/src/test/java/org/springframework/cloud/sleuth/instrument/messaging/issues/issue_943/CustomExecutorConfig.java b/spring-cloud-sleuth-core/src/test/java/org/springframework/cloud/sleuth/instrument/messaging/issues/issue_943/CustomExecutorConfig.java
index d52f3259f..2961b43d8 100644
--- a/spring-cloud-sleuth-core/src/test/java/org/springframework/cloud/sleuth/instrument/messaging/issues/issue_943/CustomExecutorConfig.java
+++ b/spring-cloud-sleuth-core/src/test/java/org/springframework/cloud/sleuth/instrument/messaging/issues/issue_943/CustomExecutorConfig.java
@@ -1,46 +1,46 @@
-/*
- * Copyright 2013-2018 the original author or authors.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package org.springframework.cloud.sleuth.instrument.messaging.issues.issue_943;
-
-import java.util.concurrent.Executor;
-
-import org.springframework.beans.factory.BeanFactory;
-import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.cloud.sleuth.instrument.async.LazyTraceExecutor;
-import org.springframework.context.annotation.Configuration;
-import org.springframework.scheduling.annotation.AsyncConfigurerSupport;
-import org.springframework.scheduling.annotation.EnableAsync;
-import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor;
-
-@EnableAsync
-@Configuration
-public class CustomExecutorConfig extends AsyncConfigurerSupport {
-
- @Autowired BeanFactory beanFactory;
-
- @Override public Executor getAsyncExecutor() {
- ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor();
- // CUSTOMIZE HERE
- executor.setCorePoolSize(7);
- executor.setMaxPoolSize(42);
- executor.setQueueCapacity(11);
- executor.setThreadNamePrefix("MyExecutor-");
- // DON'T FORGET TO INITIALIZE
- executor.initialize();
- return new LazyTraceExecutor(this.beanFactory, executor);
- }
+/*
+ * Copyright 2013-2018 the original author or authors.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.springframework.cloud.sleuth.instrument.messaging.issues.issue_943;
+
+import java.util.concurrent.Executor;
+
+import org.springframework.beans.factory.BeanFactory;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.cloud.sleuth.instrument.async.LazyTraceExecutor;
+import org.springframework.context.annotation.Configuration;
+import org.springframework.scheduling.annotation.AsyncConfigurerSupport;
+import org.springframework.scheduling.annotation.EnableAsync;
+import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor;
+
+@EnableAsync
+@Configuration
+public class CustomExecutorConfig extends AsyncConfigurerSupport {
+
+ @Autowired BeanFactory beanFactory;
+
+ @Override public Executor getAsyncExecutor() {
+ ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor();
+ // CUSTOMIZE HERE
+ executor.setCorePoolSize(7);
+ executor.setMaxPoolSize(42);
+ executor.setQueueCapacity(11);
+ executor.setThreadNamePrefix("MyExecutor-");
+ // DON'T FORGET TO INITIALIZE
+ executor.initialize();
+ return new LazyTraceExecutor(this.beanFactory, executor);
+ }
}
\ No newline at end of file
diff --git a/spring-cloud-sleuth-core/src/test/java/org/springframework/cloud/sleuth/instrument/messaging/issues/issue_943/HelloWorldImpl.java b/spring-cloud-sleuth-core/src/test/java/org/springframework/cloud/sleuth/instrument/messaging/issues/issue_943/HelloWorldImpl.java
index 59ab08472..bacdfb7a7 100644
--- a/spring-cloud-sleuth-core/src/test/java/org/springframework/cloud/sleuth/instrument/messaging/issues/issue_943/HelloWorldImpl.java
+++ b/spring-cloud-sleuth-core/src/test/java/org/springframework/cloud/sleuth/instrument/messaging/issues/issue_943/HelloWorldImpl.java
@@ -1,52 +1,52 @@
-/*
- * Copyright 2013-2018 the original author or authors.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package org.springframework.cloud.sleuth.instrument.messaging.issues.issue_943;
-
-import java.util.ArrayList;
-import java.util.Arrays;
-import java.util.List;
-
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-
-public class HelloWorldImpl {
-
- private static final Logger LOG = LoggerFactory.getLogger(HelloWorldImpl.class);
-
- public String invokeProcessor(String message) throws InterruptedException {
- LOG.info(" input message "+message);
- Thread.currentThread().sleep(500);
- LOG.info(" After the Sleep "+message);
- String responseMessage = message + " Persist into DB ";
- return responseMessage;
- }
-
-
- public List aggregate(List requestMessage) {
- LOG.info(Thread.currentThread().getName());
- LOG.info(" requestMessage aggregate "+requestMessage);
- return requestMessage;
- }
-
-
- public List splitMessage(String[] splitRequest){
- LOG.info(" Inside splitMessage " +splitRequest);
- List splitGBSResponse = new ArrayList();
- splitGBSResponse = Arrays.asList(splitRequest);
- return splitGBSResponse;
- }
-}
+/*
+ * Copyright 2013-2018 the original author or authors.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.springframework.cloud.sleuth.instrument.messaging.issues.issue_943;
+
+import java.util.ArrayList;
+import java.util.Arrays;
+import java.util.List;
+
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+public class HelloWorldImpl {
+
+ private static final Logger LOG = LoggerFactory.getLogger(HelloWorldImpl.class);
+
+ public String invokeProcessor(String message) throws InterruptedException {
+ LOG.info(" input message "+message);
+ Thread.currentThread().sleep(500);
+ LOG.info(" After the Sleep "+message);
+ String responseMessage = message + " Persist into DB ";
+ return responseMessage;
+ }
+
+
+ public List aggregate(List requestMessage) {
+ LOG.info(Thread.currentThread().getName());
+ LOG.info(" requestMessage aggregate "+requestMessage);
+ return requestMessage;
+ }
+
+
+ public List splitMessage(String[] splitRequest){
+ LOG.info(" Inside splitMessage " +splitRequest);
+ List splitGBSResponse = new ArrayList();
+ splitGBSResponse = Arrays.asList(splitRequest);
+ return splitGBSResponse;
+ }
+}
diff --git a/spring-cloud-sleuth-core/src/test/java/org/springframework/cloud/sleuth/instrument/messaging/issues/issue_943/HelloWorldRestController.java b/spring-cloud-sleuth-core/src/test/java/org/springframework/cloud/sleuth/instrument/messaging/issues/issue_943/HelloWorldRestController.java
index fe84655fa..bff4c3568 100644
--- a/spring-cloud-sleuth-core/src/test/java/org/springframework/cloud/sleuth/instrument/messaging/issues/issue_943/HelloWorldRestController.java
+++ b/spring-cloud-sleuth-core/src/test/java/org/springframework/cloud/sleuth/instrument/messaging/issues/issue_943/HelloWorldRestController.java
@@ -1,68 +1,68 @@
-/*
- * Copyright 2013-2018 the original author or authors.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package org.springframework.cloud.sleuth.instrument.messaging.issues.issue_943;
-
-import java.util.List;
-
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.context.ApplicationContext;
-import org.springframework.http.HttpStatus;
-import org.springframework.http.MediaType;
-import org.springframework.http.ResponseEntity;
-import org.springframework.messaging.PollableChannel;
-import org.springframework.messaging.support.GenericMessage;
-import org.springframework.web.bind.annotation.RequestMapping;
-import org.springframework.web.bind.annotation.RequestMethod;
-import org.springframework.web.bind.annotation.RestController;
-
-@RestController
-public class HelloWorldRestController {
-
- private static final Logger LOG = LoggerFactory.getLogger(HelloWorldRestController.class);
-
- @Autowired
- private ApplicationContext applicationContext;
-
- @RequestMapping(path = "getHelloWorldMessage", method = RequestMethod.GET, produces = MediaType.TEXT_PLAIN_VALUE)
- public ResponseEntity getHelloWorld() throws Exception {
-
- LOG.info("Inside getHelloWorldMessage");
-
- String[] requestMessage = new String[3];
- requestMessage[0] = "Hellow World Message 1";
- requestMessage[1] = "Hellow World Message 2";
- requestMessage[2] = "Hellow World Message 3";
-
- PollableChannel outputChannel = (PollableChannel) applicationContext.getBean("messagingOutputChannel");
-
- MessagingGateway messagingGateway = (MessagingGateway) applicationContext
- .getBean("messagingGateway");
-
- messagingGateway.processMessage(requestMessage);
-
- GenericMessage reply = (GenericMessage) outputChannel.receive();
-
- List body = (List) reply.getPayload();
-
- LOG.info(" Response Message " + body);
-
- return new ResponseEntity(body.toString(), HttpStatus.OK);
- }
-
-}
+/*
+ * Copyright 2013-2018 the original author or authors.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.springframework.cloud.sleuth.instrument.messaging.issues.issue_943;
+
+import java.util.List;
+
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.context.ApplicationContext;
+import org.springframework.http.HttpStatus;
+import org.springframework.http.MediaType;
+import org.springframework.http.ResponseEntity;
+import org.springframework.messaging.PollableChannel;
+import org.springframework.messaging.support.GenericMessage;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RequestMethod;
+import org.springframework.web.bind.annotation.RestController;
+
+@RestController
+public class HelloWorldRestController {
+
+ private static final Logger LOG = LoggerFactory.getLogger(HelloWorldRestController.class);
+
+ @Autowired
+ private ApplicationContext applicationContext;
+
+ @RequestMapping(path = "getHelloWorldMessage", method = RequestMethod.GET, produces = MediaType.TEXT_PLAIN_VALUE)
+ public ResponseEntity getHelloWorld() throws Exception {
+
+ LOG.info("Inside getHelloWorldMessage");
+
+ String[] requestMessage = new String[3];
+ requestMessage[0] = "Hellow World Message 1";
+ requestMessage[1] = "Hellow World Message 2";
+ requestMessage[2] = "Hellow World Message 3";
+
+ PollableChannel outputChannel = (PollableChannel) applicationContext.getBean("messagingOutputChannel");
+
+ MessagingGateway messagingGateway = (MessagingGateway) applicationContext
+ .getBean("messagingGateway");
+
+ messagingGateway.processMessage(requestMessage);
+
+ GenericMessage reply = (GenericMessage) outputChannel.receive();
+
+ List body = (List) reply.getPayload();
+
+ LOG.info(" Response Message " + body);
+
+ return new ResponseEntity(body.toString(), HttpStatus.OK);
+ }
+
+}
diff --git a/spring-cloud-sleuth-core/src/test/java/org/springframework/cloud/sleuth/instrument/messaging/issues/issue_943/MessagingGateway.java b/spring-cloud-sleuth-core/src/test/java/org/springframework/cloud/sleuth/instrument/messaging/issues/issue_943/MessagingGateway.java
index 8c39b98d8..3fbceca56 100644
--- a/spring-cloud-sleuth-core/src/test/java/org/springframework/cloud/sleuth/instrument/messaging/issues/issue_943/MessagingGateway.java
+++ b/spring-cloud-sleuth-core/src/test/java/org/springframework/cloud/sleuth/instrument/messaging/issues/issue_943/MessagingGateway.java
@@ -1,23 +1,23 @@
-/*
- * Copyright 2013-2018 the original author or authors.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package org.springframework.cloud.sleuth.instrument.messaging.issues.issue_943;
-
-public interface MessagingGateway {
-
- void processMessage(String[] messageArray);
-
-}
+/*
+ * Copyright 2013-2018 the original author or authors.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.springframework.cloud.sleuth.instrument.messaging.issues.issue_943;
+
+public interface MessagingGateway {
+
+ void processMessage(String[] messageArray);
+
+}
diff --git a/spring-cloud-sleuth-core/src/test/resources/beans/applicationContext.xml b/spring-cloud-sleuth-core/src/test/resources/beans/applicationContext.xml
index ea584d66d..ab148c220 100644
--- a/spring-cloud-sleuth-core/src/test/resources/beans/applicationContext.xml
+++ b/spring-cloud-sleuth-core/src/test/resources/beans/applicationContext.xml
@@ -1,83 +1,83 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/spring-cloud-sleuth-dependencies/pom.xml b/spring-cloud-sleuth-dependencies/pom.xml
index 65412e044..0c7dbde8c 100644
--- a/spring-cloud-sleuth-dependencies/pom.xml
+++ b/spring-cloud-sleuth-dependencies/pom.xml
@@ -21,11 +21,11 @@
spring-cloud-dependencies-parent
org.springframework.cloud
- 2.1.0.M2
+ 2.1.0.BUILD-SNAPSHOT
spring-cloud-sleuth-dependencies
- 2.1.0.M1
+ 2.1.0.BUILD-SNAPSHOT
pom
spring-cloud-sleuth-dependencies
Spring Cloud Sleuth Dependencies
diff --git a/spring-cloud-sleuth-samples/pom.xml b/spring-cloud-sleuth-samples/pom.xml
index ac0cddb69..c093c45a6 100644
--- a/spring-cloud-sleuth-samples/pom.xml
+++ b/spring-cloud-sleuth-samples/pom.xml
@@ -28,7 +28,7 @@
org.springframework.cloud
spring-cloud-sleuth
- 2.1.0.M1
+ 2.1.0.BUILD-SNAPSHOT
..
diff --git a/spring-cloud-sleuth-samples/spring-cloud-sleuth-sample-feign/pom.xml b/spring-cloud-sleuth-samples/spring-cloud-sleuth-sample-feign/pom.xml
index caa7d9a1c..481dfa076 100644
--- a/spring-cloud-sleuth-samples/spring-cloud-sleuth-sample-feign/pom.xml
+++ b/spring-cloud-sleuth-samples/spring-cloud-sleuth-sample-feign/pom.xml
@@ -27,7 +27,7 @@
org.springframework.cloud
spring-cloud-sleuth-samples
- 2.1.0.M1
+ 2.1.0.BUILD-SNAPSHOT
..
diff --git a/spring-cloud-sleuth-samples/spring-cloud-sleuth-sample-messaging/pom.xml b/spring-cloud-sleuth-samples/spring-cloud-sleuth-sample-messaging/pom.xml
index 452742ad0..283cef34a 100644
--- a/spring-cloud-sleuth-samples/spring-cloud-sleuth-sample-messaging/pom.xml
+++ b/spring-cloud-sleuth-samples/spring-cloud-sleuth-sample-messaging/pom.xml
@@ -28,7 +28,7 @@
org.springframework.cloud
spring-cloud-sleuth-samples
- 2.1.0.M1
+ 2.1.0.BUILD-SNAPSHOT
..
diff --git a/spring-cloud-sleuth-samples/spring-cloud-sleuth-sample-ribbon/pom.xml b/spring-cloud-sleuth-samples/spring-cloud-sleuth-sample-ribbon/pom.xml
index cb58b2a1b..bb06e9074 100644
--- a/spring-cloud-sleuth-samples/spring-cloud-sleuth-sample-ribbon/pom.xml
+++ b/spring-cloud-sleuth-samples/spring-cloud-sleuth-sample-ribbon/pom.xml
@@ -28,7 +28,7 @@
org.springframework.cloud
spring-cloud-sleuth-samples
- 2.1.0.M1
+ 2.1.0.BUILD-SNAPSHOT
..
diff --git a/spring-cloud-sleuth-samples/spring-cloud-sleuth-sample-test-core/pom.xml b/spring-cloud-sleuth-samples/spring-cloud-sleuth-sample-test-core/pom.xml
index b2f5ce1bf..91d952916 100644
--- a/spring-cloud-sleuth-samples/spring-cloud-sleuth-sample-test-core/pom.xml
+++ b/spring-cloud-sleuth-samples/spring-cloud-sleuth-sample-test-core/pom.xml
@@ -28,7 +28,7 @@
org.springframework.cloud
spring-cloud-sleuth-samples
- 2.1.0.M1
+ 2.1.0.BUILD-SNAPSHOT
..
diff --git a/spring-cloud-sleuth-samples/spring-cloud-sleuth-sample-websocket/pom.xml b/spring-cloud-sleuth-samples/spring-cloud-sleuth-sample-websocket/pom.xml
index 6c34613f7..914b91e7e 100644
--- a/spring-cloud-sleuth-samples/spring-cloud-sleuth-sample-websocket/pom.xml
+++ b/spring-cloud-sleuth-samples/spring-cloud-sleuth-sample-websocket/pom.xml
@@ -28,7 +28,7 @@
org.springframework.cloud
spring-cloud-sleuth-samples
- 2.1.0.M1
+ 2.1.0.BUILD-SNAPSHOT
..
diff --git a/spring-cloud-sleuth-samples/spring-cloud-sleuth-sample-zipkin/pom.xml b/spring-cloud-sleuth-samples/spring-cloud-sleuth-sample-zipkin/pom.xml
index 096e41406..b00f3b9a5 100644
--- a/spring-cloud-sleuth-samples/spring-cloud-sleuth-sample-zipkin/pom.xml
+++ b/spring-cloud-sleuth-samples/spring-cloud-sleuth-sample-zipkin/pom.xml
@@ -27,7 +27,7 @@
org.springframework.cloud
spring-cloud-sleuth-samples
- 2.1.0.M1
+ 2.1.0.BUILD-SNAPSHOT
..
diff --git a/spring-cloud-sleuth-samples/spring-cloud-sleuth-sample/pom.xml b/spring-cloud-sleuth-samples/spring-cloud-sleuth-sample/pom.xml
index c0e7ce27b..d6efe3e81 100644
--- a/spring-cloud-sleuth-samples/spring-cloud-sleuth-sample/pom.xml
+++ b/spring-cloud-sleuth-samples/spring-cloud-sleuth-sample/pom.xml
@@ -28,7 +28,7 @@
org.springframework.cloud
spring-cloud-sleuth-samples
- 2.1.0.M1
+ 2.1.0.BUILD-SNAPSHOT
..
diff --git a/spring-cloud-sleuth-zipkin/pom.xml b/spring-cloud-sleuth-zipkin/pom.xml
index e38171312..9488ceb1b 100644
--- a/spring-cloud-sleuth-zipkin/pom.xml
+++ b/spring-cloud-sleuth-zipkin/pom.xml
@@ -28,7 +28,7 @@
org.springframework.cloud
spring-cloud-sleuth
- 2.1.0.M1
+ 2.1.0.BUILD-SNAPSHOT
..
diff --git a/spring-cloud-starter-sleuth/pom.xml b/spring-cloud-starter-sleuth/pom.xml
index 94e86f16d..38817e4c1 100644
--- a/spring-cloud-starter-sleuth/pom.xml
+++ b/spring-cloud-starter-sleuth/pom.xml
@@ -21,7 +21,7 @@
org.springframework.cloud
spring-cloud-sleuth
- 2.1.0.M1
+ 2.1.0.BUILD-SNAPSHOT
..
spring-cloud-starter-sleuth
diff --git a/spring-cloud-starter-zipkin/pom.xml b/spring-cloud-starter-zipkin/pom.xml
index 718926074..5c0b81ad2 100644
--- a/spring-cloud-starter-zipkin/pom.xml
+++ b/spring-cloud-starter-zipkin/pom.xml
@@ -21,7 +21,7 @@
org.springframework.cloud
spring-cloud-sleuth
- 2.1.0.M1
+ 2.1.0.BUILD-SNAPSHOT
..
spring-cloud-starter-zipkin