Skip to content

Commit 6f72777

Browse files
committed
Add required web test client dependencies
1 parent 5b3a22e commit 6f72777

File tree

5 files changed

+45
-0
lines changed
  • spring-cloud-function-adapters/spring-cloud-function-adapter-gcp
  • spring-cloud-function-kotlin
  • spring-cloud-function-samples
  • spring-cloud-function-web

5 files changed

+45
-0
lines changed

spring-cloud-function-adapters/spring-cloud-function-adapter-gcp/pom.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,5 +74,15 @@
7474
<version>0.1.2</version>
7575
<scope>test</scope>
7676
</dependency>
77+
<dependency>
78+
<groupId>org.springframework.boot</groupId>
79+
<artifactId>spring-boot-restclient</artifactId>
80+
<scope>test</scope>
81+
</dependency>
82+
<dependency>
83+
<groupId>org.springframework.boot</groupId>
84+
<artifactId>spring-boot-webclient</artifactId>
85+
<scope>test</scope>
86+
</dependency>
7787
</dependencies>
7888
</project>

spring-cloud-function-kotlin/pom.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,16 @@
7979
<artifactId>spring-boot-configuration-processor</artifactId>
8080
<optional>true</optional>
8181
</dependency>
82+
<dependency>
83+
<groupId>org.springframework.boot</groupId>
84+
<artifactId>spring-boot-restclient</artifactId>
85+
<scope>test</scope>
86+
</dependency>
87+
<dependency>
88+
<groupId>org.springframework.boot</groupId>
89+
<artifactId>spring-boot-webclient</artifactId>
90+
<scope>test</scope>
91+
</dependency>
8292
</dependencies>
8393

8494
<build>

spring-cloud-function-samples/function-sample-pojo/pom.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,16 @@
3838
<artifactId>spring-boot-starter-test</artifactId>
3939
<scope>test</scope>
4040
</dependency>
41+
<dependency>
42+
<groupId>org.springframework.boot</groupId>
43+
<artifactId>spring-boot-restclient</artifactId>
44+
<scope>test</scope>
45+
</dependency>
46+
<dependency>
47+
<groupId>org.springframework.boot</groupId>
48+
<artifactId>spring-boot-webclient</artifactId>
49+
<scope>test</scope>
50+
</dependency>
4151
</dependencies>
4252

4353
<dependencyManagement>

spring-cloud-function-samples/function-sample-spring-integration/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,11 @@
3838
<artifactId>spring-boot-starter-test</artifactId>
3939
<scope>test</scope>
4040
</dependency>
41+
<dependency>
42+
<groupId>org.springframework.boot</groupId>
43+
<artifactId>spring-boot-restclient</artifactId>
44+
<scope>test</scope>
45+
</dependency>
4146
</dependencies>
4247

4348
<dependencyManagement>

spring-cloud-function-web/pom.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,16 @@
7171
<artifactId>httpclient5</artifactId>
7272
<scope>test</scope>
7373
</dependency>
74+
<dependency>
75+
<groupId>org.springframework.boot</groupId>
76+
<artifactId>spring-boot-restclient</artifactId>
77+
<scope>test</scope>
78+
</dependency>
79+
<dependency>
80+
<groupId>org.springframework.boot</groupId>
81+
<artifactId>spring-boot-webclient</artifactId>
82+
<scope>test</scope>
83+
</dependency>
7484
</dependencies>
7585

7686
<build>

0 commit comments

Comments
 (0)