Skip to content

Commit 932e210

Browse files
fix missing spring boot rest client dependency
1 parent a4f9533 commit 932e210

File tree

2 files changed

+10
-0
lines changed
  • modules/flowable-spring-boot/flowable-spring-boot-samples
    • flowable-spring-boot-sample-actuator
    • flowable-spring-boot-sample-ldap

2 files changed

+10
-0
lines changed

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
@@ -23,6 +23,11 @@
2323
<artifactId>spring-boot-starter-web</artifactId>
2424
<optional>true</optional>
2525
</dependency>
26+
<dependency>
27+
<groupId>org.springframework.boot</groupId>
28+
<artifactId>spring-boot-restclient</artifactId>
29+
<scope>test</scope>
30+
</dependency>
2631
<dependency>
2732
<groupId>org.springframework.boot</groupId>
2833
<artifactId>spring-boot-resttestclient</artifactId>

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
@@ -45,6 +45,11 @@
4545
<artifactId>spring-boot-starter-test</artifactId>
4646
<scope>test</scope>
4747
</dependency>
48+
<dependency>
49+
<groupId>org.springframework.boot</groupId>
50+
<artifactId>spring-boot-restclient</artifactId>
51+
<scope>test</scope>
52+
</dependency>
4853
<dependency>
4954
<groupId>org.springframework.boot</groupId>
5055
<artifactId>spring-boot-resttestclient</artifactId>

0 commit comments

Comments
 (0)