Skip to content

Commit 89433dc

Browse files
Added test framework as part of the BOM
1 parent 996a4c1 commit 89433dc

File tree

4 files changed

+7
-18
lines changed

4 files changed

+7
-18
lines changed

spring-cloud-sleuth-dependencies/pom.xml

+6
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,12 @@
7373
<artifactId>spring-cloud-starter-sleuth</artifactId>
7474
<version>${project.version}</version>
7575
</dependency>
76+
<!-- Test framework -->
77+
<dependency>
78+
<groupId>org.springframework.cloud</groupId>
79+
<artifactId>spring-cloud-sleuth-tests-common</artifactId>
80+
<version>${project.version}</version>
81+
</dependency>
7682
<!-- BRAVE -->
7783
<dependency>
7884
<groupId>io.zipkin.brave</groupId>

src/checkstyle/checkstyle-suppressions.xml

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"https://www.puppycrawl.com/dtds/suppressions_1_1.dtd">
55
<suppressions>
66
<suppress files=".*/test/.*" checks="JavadocVariable"/>
7+
<suppress files=".*/tests/common/.*" checks="JavadocVariable"/>
78
<suppress files=".*ReactorSleuth\.java" checks="InnerAssignment"/>
89
<suppress files=".*SpanHandlerTests.*" checks="LineLengthCheck"/>
910
<suppress files=".*GrpcTracingIntegrationTests.*" checks="LineLengthCheck"/>

tests/common/pom.xml

-4
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,6 @@
3434
<relativePath>..</relativePath>
3535
</parent>
3636

37-
<properties>
38-
<maven.javadoc.skip>true</maven.javadoc.skip>
39-
</properties>
40-
4137
<dependencies>
4238
<dependency>
4339
<groupId>org.springframework.cloud</groupId>

tests/pom.xml

-14
Original file line numberDiff line numberDiff line change
@@ -40,18 +40,4 @@
4040
<module>otel</module>
4141
</modules>
4242

43-
<build>
44-
<pluginManagement>
45-
<plugins>
46-
<plugin>
47-
<!--skip deploy (this is just a test module) -->
48-
<artifactId>maven-deploy-plugin</artifactId>
49-
<configuration>
50-
<skip>true</skip>
51-
</configuration>
52-
</plugin>
53-
</plugins>
54-
</pluginManagement>
55-
</build>
56-
5743
</project>

0 commit comments

Comments
 (0)