Change package gcloud to gcp

Resolves #510
This commit is contained in:
Mike Eltsufin
2020-04-30 10:29:54 -04:00
committed by Oleg Zhurakousky
parent 10b9e3d30d
commit c1d472de25
10 changed files with 14 additions and 14 deletions

View File

@@ -35,7 +35,7 @@ Run the following command from the project root to deploy.
----
gcloud alpha functions deploy function-sample-gcp \
--entry-point org.springframework.cloud.function.adapter.gcloud.FunctionInvoker \
--entry-point org.springframework.cloud.function.adapter.gcp.FunctionInvoker \
--runtime java11 \
--trigger-http \
--source target/deploy \

View File

@@ -27,7 +27,7 @@
<artifactId>function-maven-plugin</artifactId>
<version>0.9.1</version>
<configuration>
<functionTarget>org.springframework.cloud.function.adapter.gcloud.FunctionInvoker</functionTarget>
<functionTarget>org.springframework.cloud.function.adapter.gcp.FunctionInvoker</functionTarget>
<port>8080</port>
</configuration>
</plugin>