Add Integration Test for GCP Sample

Fixes: #505.

add the json dependency to fix it

remove json dep
Resolves #507
This commit is contained in:
Mike Eltsufin
2020-04-24 16:53:46 -04:00
committed by Oleg Zhurakousky
parent b9f4db91a4
commit ce7c9dc8a1
2 changed files with 112 additions and 0 deletions

View File

@@ -18,6 +18,29 @@
<artifactId>spring-cloud-function-adapter-gcp</artifactId>
<version>${project.version}</version>
</dependency>
<!-- test dependencies -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>