diff --git a/README.adoc b/README.adoc
index 6c5e5b88c..5e48c370b 100644
--- a/README.adoc
+++ b/README.adoc
@@ -112,23 +112,9 @@ the `.mvn` configuration, so if you find you have to do it to make a
build succeed, please raise a ticket to get the settings added to
source control.
-For hints on how to build the project look in `.travis.yml` if there
-is one. There should be a "script" and maybe "install" command. Also
-look at the "services" section to see if any services need to be
-running locally (e.g. mongo or rabbit). Ignore the git-related bits
-that you might find in "before_install" since they're related to setting git
-credentials and you already have those.
+The projects that require middleware (i.e. Redis) for testing generally
+require that a local instance of [Docker](https://www.docker.com/get-started) is installed and running.
-The projects that require middleware generally include a
-`docker-compose.yml`, so consider using
-https://docs.docker.com/compose/[Docker Compose] to run the middeware servers
-in Docker containers. See the README in the
-https://github.com/spring-cloud-samples/scripts[scripts demo
-repository] for specific instructions about the common cases of mongo,
-rabbit and redis.
-
-NOTE: If all else fails, build with the command from `.travis.yml` (usually
-`./mvnw install`).
=== Documentation
@@ -361,3 +347,54 @@ Go to `File` -> `Settings` -> `Other settings` -> `Checkstyle`. There click on t
- `checkstyle.additional.suppressions.file` - this variable corresponds to suppressions in your local project. E.g. you're working on `spring-cloud-contract`. Then point to the `project-root/src/checkstyle/checkstyle-suppressions.xml` folder. Example for `spring-cloud-contract` would be: `/home/username/spring-cloud-contract/src/checkstyle/checkstyle-suppressions.xml`.
IMPORTANT: Remember to set the `Scan Scope` to `All sources` since we apply checkstyle rules for production and test sources.
+
+=== Duplicate Finder
+
+Spring Cloud Build brings along the `basepom:duplicate-finder-maven-plugin`, that enables flagging duplicate and conflicting classes and resources on the java classpath.
+
+==== Duplicate Finder configuration
+
+Duplicate finder is *enabled by default* and will run in the `verify` phase of your Maven build, but it will only take effect in your project if you add the `duplicate-finder-maven-plugin` to the `build` section of the projecst's `pom.xml`.
+
+.pom.xml
+[source,xml]
+----
+
+
+
+ org.basepom.maven
+ duplicate-finder-maven-plugin
+
+
+
+----
+
+For other properties, we have set defaults as listed in the https://github.com/basepom/duplicate-finder-maven-plugin/wiki[plugin documentation].
+
+You can easily override them but setting the value of the selected property prefixed with `duplicate-finder-maven-plugin`. For example, set `duplicate-finder-maven-plugin.skip` to `true` in order to skip duplicates check in your build.
+
+If you need to add `ignoredClassPatterns` or `ignoredResourcePatterns` to your setup, make sure to add them in the plugin configuration section of your project:
+
+[source,xml]
+----
+
+
+
+ org.basepom.maven
+ duplicate-finder-maven-plugin
+
+
+ org.joda.time.base.BaseDateTime
+ .*module-info
+
+
+ changelog.txt
+
+
+
+
+
+
+
+----
+
diff --git a/benchmarks/pom.xml b/benchmarks/pom.xml
index ab1407212..c190d8689 100644
--- a/benchmarks/pom.xml
+++ b/benchmarks/pom.xml
@@ -22,13 +22,13 @@
Benchmarks
Benchmarks (JMH)
org.springframework.cloud
- 3.0.5-SNAPSHOT
+ 3.0.5
benchmarks
org.springframework.boot
spring-boot-starter-parent
- 2.4.10
+ 2.4.13
diff --git a/docs/pom.xml b/docs/pom.xml
index e91a021da..ea665508d 100644
--- a/docs/pom.xml
+++ b/docs/pom.xml
@@ -21,7 +21,7 @@
org.springframework.cloud
spring-cloud-sleuth
- 3.0.5-SNAPSHOT
+ 3.0.5
spring-cloud-sleuth-docs
jar
diff --git a/pom.xml b/pom.xml
index 9d1e6a5c4..b5af65d63 100644
--- a/pom.xml
+++ b/pom.xml
@@ -21,7 +21,7 @@
4.0.0
spring-cloud-sleuth
- 3.0.5-SNAPSHOT
+ 3.0.5
pom
Spring Cloud Sleuth
Spring Cloud Sleuth
@@ -29,7 +29,7 @@
org.springframework.cloud
spring-cloud-build
- 3.0.4
+ 3.0.5
@@ -62,14 +62,14 @@
1.8
1.8
1.8
- 3.0.4
- 3.0.5-SNAPSHOT
- 3.0.5-SNAPSHOT
- 2.0.3-SNAPSHOT
+ 3.0.5
+ 3.0.5
+ 3.0.6
+ 2.0.2
3.1.6
3.1.6
- 3.0.5-SNAPSHOT
- 3.0.5-SNAPSHOT
+ 3.0.5
+ 3.0.6
5.13.2
0.32.0
2.3.4.RELEASE
diff --git a/spring-cloud-sleuth-api/pom.xml b/spring-cloud-sleuth-api/pom.xml
index 6eb4603e6..6311b7fa4 100644
--- a/spring-cloud-sleuth-api/pom.xml
+++ b/spring-cloud-sleuth-api/pom.xml
@@ -28,7 +28,7 @@
org.springframework.cloud
spring-cloud-sleuth
- 3.0.5-SNAPSHOT
+ 3.0.5
..
diff --git a/spring-cloud-sleuth-autoconfigure/pom.xml b/spring-cloud-sleuth-autoconfigure/pom.xml
index 770a03f99..9fb5584fc 100644
--- a/spring-cloud-sleuth-autoconfigure/pom.xml
+++ b/spring-cloud-sleuth-autoconfigure/pom.xml
@@ -28,7 +28,7 @@
org.springframework.cloud
spring-cloud-sleuth
- 3.0.5-SNAPSHOT
+ 3.0.5
..
diff --git a/spring-cloud-sleuth-brave/pom.xml b/spring-cloud-sleuth-brave/pom.xml
index dbfb4f8b4..595b3a6ee 100644
--- a/spring-cloud-sleuth-brave/pom.xml
+++ b/spring-cloud-sleuth-brave/pom.xml
@@ -28,7 +28,7 @@
org.springframework.cloud
spring-cloud-sleuth
- 3.0.5-SNAPSHOT
+ 3.0.5
..
diff --git a/spring-cloud-sleuth-dependencies/.flattened-pom.xml b/spring-cloud-sleuth-dependencies/.flattened-pom.xml
new file mode 100644
index 000000000..6c722bffd
--- /dev/null
+++ b/spring-cloud-sleuth-dependencies/.flattened-pom.xml
@@ -0,0 +1,224 @@
+
+
+
+ 4.0.0
+
+ org.springframework.cloud
+ spring-cloud-dependencies-parent
+ 3.0.5
+
+
+ org.springframework.cloud
+ spring-cloud-sleuth-dependencies
+ 3.0.5
+ pom
+ spring-cloud-sleuth-dependencies
+ Spring Cloud Sleuth Dependencies
+ https://projects.spring.io/spring-cloud/spring-cloud-sleuth-dependencies/
+
+ Pivotal Software, Inc.
+ https://www.spring.io
+
+
+
+ Apache License, Version 2.0
+ https://www.apache.org/licenses/LICENSE-2.0
+ Copyright 2014-2015 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
+
+ https://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.
+
+
+
+
+ dsyer
+ Dave Syer
+ dsyer at pivotal.io
+ Pivotal Software, Inc.
+ https://www.spring.io
+
+ Project lead
+
+
+
+ sgibb
+ Spencer Gibb
+ sgibb at pivotal.io
+ Pivotal Software, Inc.
+ https://www.spring.io
+
+ Project lead
+
+
+
+
+ scm:git:git://github.com/spring-cloud/spring-cloud-sleuth.git
+ scm:git:ssh://git@github.com/spring-cloud/spring-cloud-sleuth.git
+ https://github.com/spring-cloud/spring-cloud-sleuth
+
+
+
+ repo.spring.io
+ Spring Release Repository
+ https://repo.spring.io/libs-release-local
+
+
+ repo.spring.io
+ Spring Snapshot Repository
+ https://repo.spring.io/libs-snapshot-local
+
+
+ spring-docs
+ https:/docs.spring.io/spring-cloud-dependencies-parent/docs/3.0.5/reference/html/spring-cloud-sleuth-dependencies/
+
+ https://github.com/spring-cloud
+
+
+ 0.37.4
+ 4.2.2
+ 5.13.2
+
+
+
+
+ org.springframework.cloud
+ spring-cloud-sleuth-autoconfigure
+ ${project.version}
+
+
+ org.springframework.cloud
+ spring-cloud-sleuth-api
+ ${project.version}
+
+
+ org.springframework.cloud
+ spring-cloud-sleuth-instrumentation
+ ${project.version}
+
+
+ org.springframework.cloud
+ spring-cloud-sleuth-brave
+ ${project.version}
+
+
+ org.springframework.cloud
+ spring-cloud-sleuth-zipkin
+ ${project.version}
+
+
+ org.springframework.cloud
+ spring-cloud-starter-sleuth
+ ${project.version}
+
+
+ org.springframework.cloud
+ spring-cloud-sleuth-tests-common
+ ${project.version}
+
+
+ io.zipkin.brave
+ brave-bom
+ ${brave.version}
+ pom
+ import
+
+
+ io.opentracing.brave
+ brave-opentracing
+ ${brave.opentracing.version}
+
+
+ *
+ io.zipkin.brave
+
+
+
+
+ io.github.lognet
+ grpc-spring-boot-starter
+ ${grpc.spring.boot.version}
+
+
+
+
+
+ spring
+
+
+
+ false
+
+
+ true
+
+ spring-snapshots
+ Spring Snapshots
+ https://repo.spring.io/snapshot
+
+
+
+ false
+
+ spring-milestones
+ Spring Milestones
+ https://repo.spring.io/milestone
+
+
+
+ false
+
+ spring-releases
+ Spring Releases
+ https://repo.spring.io/release
+
+
+
+
+
+ false
+
+
+ true
+
+ spring-snapshots
+ Spring Snapshots
+ https://repo.spring.io/snapshot
+
+
+
+ false
+
+ spring-milestones
+ Spring Milestones
+ https://repo.spring.io/milestone
+
+
+
+
+
diff --git a/spring-cloud-sleuth-dependencies/pom.xml b/spring-cloud-sleuth-dependencies/pom.xml
index 730c7a881..b7765d978 100644
--- a/spring-cloud-sleuth-dependencies/pom.xml
+++ b/spring-cloud-sleuth-dependencies/pom.xml
@@ -22,11 +22,11 @@
spring-cloud-dependencies-parent
org.springframework.cloud
- 3.0.5-SNAPSHOT
+ 3.0.5
spring-cloud-sleuth-dependencies
- 3.0.5-SNAPSHOT
+ 3.0.5
pom
spring-cloud-sleuth-dependencies
Spring Cloud Sleuth Dependencies
diff --git a/spring-cloud-sleuth-instrumentation/pom.xml b/spring-cloud-sleuth-instrumentation/pom.xml
index 26d006943..044d8166f 100644
--- a/spring-cloud-sleuth-instrumentation/pom.xml
+++ b/spring-cloud-sleuth-instrumentation/pom.xml
@@ -28,7 +28,7 @@
org.springframework.cloud
spring-cloud-sleuth
- 3.0.5-SNAPSHOT
+ 3.0.5
..
diff --git a/spring-cloud-sleuth-samples/pom.xml b/spring-cloud-sleuth-samples/pom.xml
index 99014fecd..6c2cd858b 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
- 3.0.5-SNAPSHOT
+ 3.0.5
..
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 3981273a2..b1ed532f7 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
@@ -28,7 +28,7 @@
org.springframework.cloud
spring-cloud-sleuth-samples
- 3.0.5-SNAPSHOT
+ 3.0.5
..
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 1004aedeb..a73378186 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
- 3.0.5-SNAPSHOT
+ 3.0.5
..
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 f8b1b5e42..f54db93fa 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
- 3.0.5-SNAPSHOT
+ 3.0.5
..
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 942183f0a..b55f0743d 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
- 3.0.5-SNAPSHOT
+ 3.0.5
..
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 7702e7a57..6065c3b8a 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
@@ -28,7 +28,7 @@
org.springframework.cloud
spring-cloud-sleuth-samples
- 3.0.5-SNAPSHOT
+ 3.0.5
..
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 9a9a2c128..3e3826fb2 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
- 3.0.5-SNAPSHOT
+ 3.0.5
..
diff --git a/spring-cloud-sleuth-zipkin/pom.xml b/spring-cloud-sleuth-zipkin/pom.xml
index dcdd67602..14f84a8e7 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
- 3.0.5-SNAPSHOT
+ 3.0.5
..
diff --git a/spring-cloud-starter-sleuth/pom.xml b/spring-cloud-starter-sleuth/pom.xml
index 5c2044009..ba2a6f1d9 100644
--- a/spring-cloud-starter-sleuth/pom.xml
+++ b/spring-cloud-starter-sleuth/pom.xml
@@ -22,7 +22,7 @@
org.springframework.cloud
spring-cloud-sleuth
- 3.0.5-SNAPSHOT
+ 3.0.5
..
spring-cloud-starter-sleuth
diff --git a/tests/brave/pom.xml b/tests/brave/pom.xml
index f06f50e74..1e7f39291 100644
--- a/tests/brave/pom.xml
+++ b/tests/brave/pom.xml
@@ -30,7 +30,7 @@
org.springframework.cloud
spring-cloud-sleuth-tests
- 3.0.5-SNAPSHOT
+ 3.0.5
..
diff --git a/tests/brave/spring-cloud-sleuth-instrumentation-annotation-tests/pom.xml b/tests/brave/spring-cloud-sleuth-instrumentation-annotation-tests/pom.xml
index 8b32e6392..aad23fdb8 100644
--- a/tests/brave/spring-cloud-sleuth-instrumentation-annotation-tests/pom.xml
+++ b/tests/brave/spring-cloud-sleuth-instrumentation-annotation-tests/pom.xml
@@ -30,7 +30,7 @@
org.springframework.cloud
spring-cloud-sleuth-tests-brave
- 3.0.5-SNAPSHOT
+ 3.0.5
..
diff --git a/tests/brave/spring-cloud-sleuth-instrumentation-async-tests/pom.xml b/tests/brave/spring-cloud-sleuth-instrumentation-async-tests/pom.xml
index 89f0b5252..67ea53551 100644
--- a/tests/brave/spring-cloud-sleuth-instrumentation-async-tests/pom.xml
+++ b/tests/brave/spring-cloud-sleuth-instrumentation-async-tests/pom.xml
@@ -30,7 +30,7 @@
org.springframework.cloud
spring-cloud-sleuth-tests-brave
- 3.0.5-SNAPSHOT
+ 3.0.5
..
diff --git a/tests/brave/spring-cloud-sleuth-instrumentation-baggage-tests/pom.xml b/tests/brave/spring-cloud-sleuth-instrumentation-baggage-tests/pom.xml
index 83bbe8993..dbb285691 100644
--- a/tests/brave/spring-cloud-sleuth-instrumentation-baggage-tests/pom.xml
+++ b/tests/brave/spring-cloud-sleuth-instrumentation-baggage-tests/pom.xml
@@ -30,7 +30,7 @@
org.springframework.cloud
spring-cloud-sleuth-tests-brave
- 3.0.5-SNAPSHOT
+ 3.0.5
..
diff --git a/tests/brave/spring-cloud-sleuth-instrumentation-circuitbreaker-tests/pom.xml b/tests/brave/spring-cloud-sleuth-instrumentation-circuitbreaker-tests/pom.xml
index fc0b97ccf..76dd5d496 100644
--- a/tests/brave/spring-cloud-sleuth-instrumentation-circuitbreaker-tests/pom.xml
+++ b/tests/brave/spring-cloud-sleuth-instrumentation-circuitbreaker-tests/pom.xml
@@ -30,7 +30,7 @@
org.springframework.cloud
spring-cloud-sleuth-tests-brave
- 3.0.5-SNAPSHOT
+ 3.0.5
..
diff --git a/tests/brave/spring-cloud-sleuth-instrumentation-feign-tests/pom.xml b/tests/brave/spring-cloud-sleuth-instrumentation-feign-tests/pom.xml
index 2295ccc42..23c83abde 100644
--- a/tests/brave/spring-cloud-sleuth-instrumentation-feign-tests/pom.xml
+++ b/tests/brave/spring-cloud-sleuth-instrumentation-feign-tests/pom.xml
@@ -30,7 +30,7 @@
org.springframework.cloud
spring-cloud-sleuth-tests-brave
- 3.0.5-SNAPSHOT
+ 3.0.5
..
diff --git a/tests/brave/spring-cloud-sleuth-instrumentation-gateway-tests/pom.xml b/tests/brave/spring-cloud-sleuth-instrumentation-gateway-tests/pom.xml
index 91552d705..36c5b4b7e 100644
--- a/tests/brave/spring-cloud-sleuth-instrumentation-gateway-tests/pom.xml
+++ b/tests/brave/spring-cloud-sleuth-instrumentation-gateway-tests/pom.xml
@@ -30,7 +30,7 @@
org.springframework.cloud
spring-cloud-sleuth-tests-brave
- 3.0.5-SNAPSHOT
+ 3.0.5
..
diff --git a/tests/brave/spring-cloud-sleuth-instrumentation-grpc-tests/pom.xml b/tests/brave/spring-cloud-sleuth-instrumentation-grpc-tests/pom.xml
index 028f728ee..5dc0233a7 100644
--- a/tests/brave/spring-cloud-sleuth-instrumentation-grpc-tests/pom.xml
+++ b/tests/brave/spring-cloud-sleuth-instrumentation-grpc-tests/pom.xml
@@ -30,7 +30,7 @@
org.springframework.cloud
spring-cloud-sleuth-tests-brave
- 3.0.5-SNAPSHOT
+ 3.0.5
..
diff --git a/tests/brave/spring-cloud-sleuth-instrumentation-lettuce-tests/pom.xml b/tests/brave/spring-cloud-sleuth-instrumentation-lettuce-tests/pom.xml
index 5c3865f34..97daeb39e 100644
--- a/tests/brave/spring-cloud-sleuth-instrumentation-lettuce-tests/pom.xml
+++ b/tests/brave/spring-cloud-sleuth-instrumentation-lettuce-tests/pom.xml
@@ -30,7 +30,7 @@
org.springframework.cloud
spring-cloud-sleuth-tests-brave
- 3.0.5-SNAPSHOT
+ 3.0.5
..
diff --git a/tests/brave/spring-cloud-sleuth-instrumentation-messaging-tests/pom.xml b/tests/brave/spring-cloud-sleuth-instrumentation-messaging-tests/pom.xml
index c5845903f..ebd7a4bd0 100644
--- a/tests/brave/spring-cloud-sleuth-instrumentation-messaging-tests/pom.xml
+++ b/tests/brave/spring-cloud-sleuth-instrumentation-messaging-tests/pom.xml
@@ -30,7 +30,7 @@
org.springframework.cloud
spring-cloud-sleuth-tests-brave
- 3.0.5-SNAPSHOT
+ 3.0.5
..
diff --git a/tests/brave/spring-cloud-sleuth-instrumentation-mvc-tests/pom.xml b/tests/brave/spring-cloud-sleuth-instrumentation-mvc-tests/pom.xml
index f205c50b4..6f1d26958 100644
--- a/tests/brave/spring-cloud-sleuth-instrumentation-mvc-tests/pom.xml
+++ b/tests/brave/spring-cloud-sleuth-instrumentation-mvc-tests/pom.xml
@@ -30,7 +30,7 @@
org.springframework.cloud
spring-cloud-sleuth-tests-brave
- 3.0.5-SNAPSHOT
+ 3.0.5
..
diff --git a/tests/brave/spring-cloud-sleuth-instrumentation-quartz-tests/pom.xml b/tests/brave/spring-cloud-sleuth-instrumentation-quartz-tests/pom.xml
index eb90b2639..706279432 100644
--- a/tests/brave/spring-cloud-sleuth-instrumentation-quartz-tests/pom.xml
+++ b/tests/brave/spring-cloud-sleuth-instrumentation-quartz-tests/pom.xml
@@ -30,7 +30,7 @@
org.springframework.cloud
spring-cloud-sleuth-tests-brave
- 3.0.5-SNAPSHOT
+ 3.0.5
..
diff --git a/tests/brave/spring-cloud-sleuth-instrumentation-reactor-tests/pom.xml b/tests/brave/spring-cloud-sleuth-instrumentation-reactor-tests/pom.xml
index 89f53ef08..c44dcf486 100644
--- a/tests/brave/spring-cloud-sleuth-instrumentation-reactor-tests/pom.xml
+++ b/tests/brave/spring-cloud-sleuth-instrumentation-reactor-tests/pom.xml
@@ -30,7 +30,7 @@
org.springframework.cloud
spring-cloud-sleuth-tests-brave
- 3.0.5-SNAPSHOT
+ 3.0.5
..
diff --git a/tests/brave/spring-cloud-sleuth-instrumentation-rxjava-tests/pom.xml b/tests/brave/spring-cloud-sleuth-instrumentation-rxjava-tests/pom.xml
index ad829bbc3..14660df44 100644
--- a/tests/brave/spring-cloud-sleuth-instrumentation-rxjava-tests/pom.xml
+++ b/tests/brave/spring-cloud-sleuth-instrumentation-rxjava-tests/pom.xml
@@ -30,7 +30,7 @@
org.springframework.cloud
spring-cloud-sleuth-tests-brave
- 3.0.5-SNAPSHOT
+ 3.0.5
..
diff --git a/tests/brave/spring-cloud-sleuth-instrumentation-scheduling-tests/pom.xml b/tests/brave/spring-cloud-sleuth-instrumentation-scheduling-tests/pom.xml
index 7c279bb4a..4aaf87c9b 100644
--- a/tests/brave/spring-cloud-sleuth-instrumentation-scheduling-tests/pom.xml
+++ b/tests/brave/spring-cloud-sleuth-instrumentation-scheduling-tests/pom.xml
@@ -30,7 +30,7 @@
org.springframework.cloud
spring-cloud-sleuth-tests-brave
- 3.0.5-SNAPSHOT
+ 3.0.5
..
diff --git a/tests/brave/spring-cloud-sleuth-instrumentation-webflux-tests/pom.xml b/tests/brave/spring-cloud-sleuth-instrumentation-webflux-tests/pom.xml
index e23cc059f..89dbef45b 100644
--- a/tests/brave/spring-cloud-sleuth-instrumentation-webflux-tests/pom.xml
+++ b/tests/brave/spring-cloud-sleuth-instrumentation-webflux-tests/pom.xml
@@ -30,7 +30,7 @@
org.springframework.cloud
spring-cloud-sleuth-tests-brave
- 3.0.5-SNAPSHOT
+ 3.0.5
..
diff --git a/tests/brave/spring-cloud-sleuth-zipkin-tests/pom.xml b/tests/brave/spring-cloud-sleuth-zipkin-tests/pom.xml
index 6fdef9b58..bd6fc4195 100644
--- a/tests/brave/spring-cloud-sleuth-zipkin-tests/pom.xml
+++ b/tests/brave/spring-cloud-sleuth-zipkin-tests/pom.xml
@@ -30,7 +30,7 @@
org.springframework.cloud
spring-cloud-sleuth-tests-brave
- 3.0.5-SNAPSHOT
+ 3.0.5
..
diff --git a/tests/common/pom.xml b/tests/common/pom.xml
index 5bb93e679..465906b68 100644
--- a/tests/common/pom.xml
+++ b/tests/common/pom.xml
@@ -30,7 +30,7 @@
org.springframework.cloud
spring-cloud-sleuth-tests
- 3.0.5-SNAPSHOT
+ 3.0.5
..
diff --git a/tests/pom.xml b/tests/pom.xml
index 33cb6076c..0c1e07fac 100644
--- a/tests/pom.xml
+++ b/tests/pom.xml
@@ -30,7 +30,7 @@
org.springframework.cloud
spring-cloud-sleuth
- 3.0.5-SNAPSHOT
+ 3.0.5
..