File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -158,7 +158,7 @@ You can configure the plugin in `pom.xml`:
158158<plugin >
159159 <groupId >com.google.cloud.functions</groupId >
160160 <artifactId >function-maven-plugin</artifactId >
161- <version >0.9.7 </version >
161+ <version >0.9.8 </version >
162162 <configuration >
163163 <functionTarget >com.example.function.Echo</functionTarget >
164164 </configuration >
@@ -187,15 +187,15 @@ Copy the Functions Framework jar to a local location like this:
187187
188188``` sh
189189mvn dependency:copy \
190- -Dartifact=' com.google.cloud.functions.invoker:java-function-invoker:1.0.2 ' \
190+ -Dartifact=' com.google.cloud.functions.invoker:java-function-invoker:1.0.3 ' \
191191 -DoutputDirectory=.
192192```
193193
194194In this example we use the current directory ` . ` but you can specify any other
195195directory to copy to. Then run your function:
196196
197197``` sh
198- java -jar java-function-invoker-1.0.2 \
198+ java -jar java-function-invoker-1.0.3 \
199199 --classpath myfunction.jar \
200200 --target com.example.HelloWorld
201201```
@@ -288,7 +288,7 @@ Framework directly, you must use `--classpath` to indicate how to find the code
288288and its dependencies. For example:
289289
290290```
291- java -jar java-function-invoker-1.0.2 \
291+ java -jar java-function-invoker-1.0.3 \
292292 --classpath 'myfunction.jar:/some/directory:/some/library/*' \
293293 --target com.example.HelloWorld
294294```
You can’t perform that action at this time.
0 commit comments