Skip to content

Commit b886421

Browse files
committed
Adds junit-platform-launcher to other commons modules
1 parent 7444cec commit b886421

File tree

5 files changed

+25
-0
lines changed
  • spring-cloud-commons
  • spring-cloud-context-integration-tests
  • spring-cloud-context-webflux-integration-tests
  • spring-cloud-context
  • spring-cloud-loadbalancer

5 files changed

+25
-0
lines changed

spring-cloud-commons/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,11 @@
172172
<artifactId>spring-cloud-test-support</artifactId>
173173
<scope>test</scope>
174174
</dependency>
175+
<dependency>
176+
<groupId>org.junit.platform</groupId>
177+
<artifactId>junit-platform-launcher</artifactId>
178+
<scope>test</scope>
179+
</dependency>
175180
<dependency>
176181
<groupId>io.projectreactor</groupId>
177182
<artifactId>reactor-test</artifactId>

spring-cloud-context-integration-tests/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,11 @@
6767
<artifactId>spring-cloud-test-support</artifactId>
6868
<scope>test</scope>
6969
</dependency>
70+
<dependency>
71+
<groupId>org.junit.platform</groupId>
72+
<artifactId>junit-platform-launcher</artifactId>
73+
<scope>test</scope>
74+
</dependency>
7075
<dependency>
7176
<groupId>org.springframework.boot</groupId>
7277
<artifactId>spring-boot-configuration-processor</artifactId>

spring-cloud-context-webflux-integration-tests/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,11 @@
3737
<artifactId>spring-cloud-test-support</artifactId>
3838
<scope>test</scope>
3939
</dependency>
40+
<dependency>
41+
<groupId>org.junit.platform</groupId>
42+
<artifactId>junit-platform-launcher</artifactId>
43+
<scope>test</scope>
44+
</dependency>
4045
<dependency>
4146
<groupId>org.springframework.boot</groupId>
4247
<artifactId>spring-boot-configuration-processor</artifactId>

spring-cloud-context/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,5 +77,10 @@
7777
<artifactId>spring-cloud-test-support</artifactId>
7878
<scope>test</scope>
7979
</dependency>
80+
<dependency>
81+
<groupId>org.junit.platform</groupId>
82+
<artifactId>junit-platform-launcher</artifactId>
83+
<scope>test</scope>
84+
</dependency>
8085
</dependencies>
8186
</project>

spring-cloud-loadbalancer/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,5 +138,10 @@
138138
<artifactId>awaitility</artifactId>
139139
<scope>test</scope>
140140
</dependency>
141+
<dependency>
142+
<groupId>org.junit.platform</groupId>
143+
<artifactId>junit-platform-launcher</artifactId>
144+
<scope>test</scope>
145+
</dependency>
141146
</dependencies>
142147
</project>

0 commit comments

Comments
 (0)