Skip to content

Commit 82401c7

Browse files
authored
docs: update readme with new release version (GoogleCloudPlatform#116)
1 parent 5fd42a7 commit 82401c7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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
189189
mvn 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

194194
In this example we use the current directory `.` but you can specify any other
195195
directory 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
288288
and 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
```

0 commit comments

Comments
 (0)