Skip to content

Commit e8a751b

Browse files
committed
Add missing spring boot rest client dependency
1 parent bf1c33d commit e8a751b

5 files changed

Lines changed: 25 additions & 0 deletions

File tree

  • modules
    • flowable-app-rest
    • flowable-spring-boot/flowable-spring-boot-samples
      • flowable-spring-boot-sample-actuator
      • flowable-spring-boot-sample-ldap
      • flowable-spring-boot-sample-rest-api-security
      • flowable-spring-boot-sample-rest-api

modules/flowable-app-rest/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -803,6 +803,11 @@
803803
<artifactId>spring-boot-resttestclient</artifactId>
804804
<scope>test</scope>
805805
</dependency>
806+
<dependency>
807+
<groupId>org.springframework.boot</groupId>
808+
<artifactId>spring-boot-restclient</artifactId>
809+
<scope>test</scope>
810+
</dependency>
806811
<dependency>
807812
<groupId>org.springframework.boot</groupId>
808813
<artifactId>spring-boot-starter-actuator-test</artifactId>

modules/flowable-spring-boot/flowable-spring-boot-samples/flowable-spring-boot-sample-actuator/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,11 @@
2828
<artifactId>spring-boot-resttestclient</artifactId>
2929
<scope>test</scope>
3030
</dependency>
31+
<dependency>
32+
<groupId>org.springframework.boot</groupId>
33+
<artifactId>spring-boot-restclient</artifactId>
34+
<scope>test</scope>
35+
</dependency>
3136
</dependencies>
3237

3338

modules/flowable-spring-boot/flowable-spring-boot-samples/flowable-spring-boot-sample-ldap/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,11 @@
5050
<artifactId>spring-boot-resttestclient</artifactId>
5151
<scope>test</scope>
5252
</dependency>
53+
<dependency>
54+
<groupId>org.springframework.boot</groupId>
55+
<artifactId>spring-boot-restclient</artifactId>
56+
<scope>test</scope>
57+
</dependency>
5358
</dependencies>
5459

5560
</project>

modules/flowable-spring-boot/flowable-spring-boot-samples/flowable-spring-boot-sample-rest-api-security/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,11 @@
3232
<artifactId>spring-boot-resttestclient</artifactId>
3333
<scope>test</scope>
3434
</dependency>
35+
<dependency>
36+
<groupId>org.springframework.boot</groupId>
37+
<artifactId>spring-boot-restclient</artifactId>
38+
<scope>test</scope>
39+
</dependency>
3540

3641
</dependencies>
3742

modules/flowable-spring-boot/flowable-spring-boot-samples/flowable-spring-boot-sample-rest-api/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,11 @@
2626
<artifactId>spring-boot-resttestclient</artifactId>
2727
<scope>test</scope>
2828
</dependency>
29+
<dependency>
30+
<groupId>org.springframework.boot</groupId>
31+
<artifactId>spring-boot-restclient</artifactId>
32+
<scope>test</scope>
33+
</dependency>
2934
</dependencies>
3035

3136

0 commit comments

Comments
 (0)