Skip to content

Commit a4f9533

Browse files
Add missing spring boot rest client dependency
1 parent 31e0a38 commit a4f9533

File tree

2 files changed

+10
-1
lines changed
  • modules/flowable-spring-boot/flowable-spring-boot-samples
    • flowable-spring-boot-sample-rest-api-security
    • flowable-spring-boot-sample-rest-api

2 files changed

+10
-1
lines changed

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,15 @@
2222
</exclusion>
2323
</exclusions>
2424
</dependency>
25-
2625
<dependency>
2726
<groupId>org.springframework.boot</groupId>
2827
<artifactId>spring-boot-starter-security</artifactId>
2928
</dependency>
29+
<dependency>
30+
<groupId>org.springframework.boot</groupId>
31+
<artifactId>spring-boot-restclient</artifactId>
32+
<scope>test</scope>
33+
</dependency>
3034
<dependency>
3135
<groupId>org.springframework.boot</groupId>
3236
<artifactId>spring-boot-resttestclient</artifactId>

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
@@ -21,6 +21,11 @@
2121
<artifactId>spring-boot-configuration-processor</artifactId>
2222
<optional>true</optional>
2323
</dependency>
24+
<dependency>
25+
<groupId>org.springframework.boot</groupId>
26+
<artifactId>spring-boot-restclient</artifactId>
27+
<scope>test</scope>
28+
</dependency>
2429
<dependency>
2530
<groupId>org.springframework.boot</groupId>
2631
<artifactId>spring-boot-resttestclient</artifactId>

0 commit comments

Comments
 (0)