Skip to content

Commit 3fe7b0e

Browse files
committed
add option to skip the shaded protobuf libraries
Signed-off-by: Gregor Zeitlinger <[email protected]>
1 parent 9dc53c9 commit 3fe7b0e

File tree

1 file changed

+25
-1
lines changed
  • integration-tests/it-spring-boot-smoke-test

1 file changed

+25
-1
lines changed

integration-tests/it-spring-boot-smoke-test/pom.xml

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
34
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
45

56
<modelVersion>4.0.0</modelVersion>
@@ -21,10 +22,18 @@
2122
</description>
2223
<properties>
2324
<java.version>17</java.version>
25+
<junit-jupiter.version>5.12.0</junit-jupiter.version>
2426
</properties>
2527

2628
<dependencyManagement>
2729
<dependencies>
30+
<dependency>
31+
<groupId>org.junit</groupId>
32+
<artifactId>junit-bom</artifactId>
33+
<version>${junit-jupiter.version}</version>
34+
<type>pom</type>
35+
<scope>import</scope>
36+
</dependency>
2837
<dependency>
2938
<groupId>io.prometheus</groupId>
3039
<artifactId>prometheus-metrics-bom</artifactId>
@@ -55,6 +64,21 @@
5564
<artifactId>spring-boot-starter-test</artifactId>
5665
<scope>test</scope>
5766
</dependency>
67+
<dependency>
68+
<groupId>org.junit.jupiter</groupId>
69+
<artifactId>junit-jupiter-engine</artifactId>
70+
<scope>test</scope>
71+
</dependency>
72+
<dependency>
73+
<groupId>org.junit.jupiter</groupId>
74+
<artifactId>junit-jupiter-api</artifactId>
75+
<scope>test</scope>
76+
</dependency>
77+
<dependency>
78+
<groupId>org.junit.platform</groupId>
79+
<artifactId>junit-platform-launcher</artifactId>
80+
<scope>test</scope>
81+
</dependency>
5882
<dependency>
5983
<groupId>io.prometheus</groupId>
6084
<artifactId>it-common</artifactId>

0 commit comments

Comments
 (0)