Skip to content

Commit 3eb8c38

Browse files
authored
Merge pull request #46 from devsapp/fix-java
fix java runtime codeuri
2 parents fdf1df3 + bb63c62 commit 3eb8c38

File tree

7 files changed

+7
-56
lines changed

7 files changed

+7
-56
lines changed

event-function/fc-event-java8/publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Type: Application
22
Name: start-fc-event-java8
3-
Version: 1.1.25
3+
Version: 1.1.26
44
Provider:
55
- 阿里云
66
Description: 快速部署一个 Java 8 的 Event 类型的 Hello World 函数到阿里云函数计算。

event-function/fc-event-java8/src/s.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ services:
5252
name: "{{ functionName }}"
5353
description: 'hello world by serverless devs'
5454
runtime: java8
55-
codeUri: ./target
55+
codeUri: ./target/HelloFCJava-1.0-SNAPSHOT-jar-with-dependencies.jar
5656
handler: example.App::handleRequest
5757
memorySize: 128
5858
timeout: 60

event-function/fc-event-java8/src/s_en.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ services:
5252
name: custom-cpp-event-function
5353
description: 'hello world by serverless devs'
5454
runtime: java8
55-
codeUri: ./target
55+
codeUri: ./target/HelloFCJava-1.0-SNAPSHOT-jar-with-dependencies.jar
5656
handler: example.App::handleRequest
5757
memorySize: 128
5858
timeout: 60

http-function/fc-http-java8/publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Type: Application
22
Name: start-fc-http-java8
3-
Version: 1.1.25
3+
Version: 1.1.26
44
Provider:
55
- 阿里云
66
Description: 快速部署一个 Java 8 的 HTTP 类型的 Hello World 函数到阿里云函数计算。

http-function/fc-http-java8/src/s.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ services:
5252
name: "{{ functionName }}"
5353
description: 'hello world by serverless devs'
5454
runtime: java8
55-
codeUri: ./target
55+
codeUri: ./target/HelloFCJava-1.0-SNAPSHOT-jar-with-dependencies.jar
5656
handler: example.App::handleRequest
5757
memorySize: 128
5858
timeout: 60

http-function/fc-http-java8/src/s_en.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ services:
5252
name: custom-cpp-event-function
5353
description: 'hello world by serverless devs'
5454
runtime: java8
55-
codeUri: ./target
55+
codeUri: ./target/HelloFCJava-1.0-SNAPSHOT-jar-with-dependencies.jar
5656
handler: example.App::handleRequest
5757
memorySize: 128
5858
timeout: 60

update.list

Lines changed: 1 addition & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -1,51 +1,2 @@
1-
async-task/python3
2-
custom-container-function/fc-custom-container-event-cpp
3-
custom-container-function/fc-custom-container-event-nodejs14
4-
custom-container-function/fc-custom-container-event-python3.9
5-
custom-container-function/fc-custom-container-http-aspdotnetcore
6-
custom-container-function/fc-custom-container-http-cpp
7-
custom-container-function/fc-custom-container-http-springboot
8-
custom-container-function/fc-custom-container-websocket-golang
9-
custom-container-function/fc-custom-container-websocket-nodejs14
10-
custom-container-function/fc-custom-container-websocket-python3.9
11-
custom-function/cpp/fc-custom-cpp-event
12-
custom-function/cpp/fc-custom-cpp-http
13-
custom-function/dart/fc-custom-dart-event
14-
custom-function/f#/fc-custom-fsharp-http
15-
custom-function/golang/fc-custom-golang-event
16-
custom-function/golang/fc-custom-golang-websocket
17-
custom-function/java8/fc-custom-java8-http
18-
custom-function/lua/fc-custom-lua-event
19-
custom-function/nodejs10/fc-custom-nodejs10-event
20-
custom-function/nodejs10/fc-custom-nodejs10-websocket
21-
custom-function/nodejs12/fc-custom-nodejs12-event
22-
custom-function/nodejs12/fc-custom-nodejs12-websocket
23-
custom-function/ruby/fc-custom-ruby-event
24-
custom-function/rust/fc-custom-rust-event
25-
custom-function/typescript/fc-custom-typescript-event
26-
custom-function/php74/fc-custom-php74-event
27-
custom-function/php74/fc-custom-php74-http
28-
custom-function/powershell/fc-custom-powershell-event
29-
custom-function/python37/fc-custom-python37-event
30-
custom-function/python37/fc-custom-python37-http
31-
custom-function/python37/fc-custom-python37-websocket
32-
event-function/fc-event-golang1.x
331
event-function/fc-event-java8
34-
event-function/fc-event-node.js6
35-
event-function/fc-event-node.js8
36-
event-function/fc-event-node.js10
37-
event-function/fc-event-node.js12
38-
event-function/fc-event-node.js14
39-
event-function/fc-event-php7.2
40-
event-function/fc-event-python2.7
41-
event-function/fc-event-python3.6
42-
http-function/fc-http-golang1.x
43-
http-function/fc-http-java8
44-
http-function/fc-http-node.js6
45-
http-function/fc-http-node.js8
46-
http-function/fc-http-node.js10
47-
http-function/fc-http-node.js12
48-
http-function/fc-http-node.js14
49-
http-function/fc-http-php7.2
50-
http-function/fc-http-python2.7
51-
http-function/fc-http-python3.6
2+
http-function/fc-http-java8

0 commit comments

Comments
 (0)