File tree Expand file tree Collapse file tree 3 files changed +31
-1
lines changed Expand file tree Collapse file tree 3 files changed +31
-1
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: Maven Publish
2
2
on :
3
3
push :
4
4
branches :
5
- - ' main '
5
+ - ' master '
6
6
tags :
7
7
- ' *'
8
8
paths :
Original file line number Diff line number Diff line change
1
+ ## 1.0.0 / 2023-02-20
2
+
3
+ The first release version.
4
+
Original file line number Diff line number Diff line change 1
1
# Functions Framework for Java
2
2
3
3
An open source FaaS (Function as a service) framework for writing portable Java functions.
4
+
5
+ ## How to use
6
+
7
+ A function is typically structured as a Maven project. We recommend using an IDE
8
+ that supports Maven to create the Maven project. Add this dependency in the
9
+ ` pom.xml ` file of your project:
10
+
11
+ ``` xml
12
+ <dependencies >
13
+ <dependency >
14
+ <groupId >dev.openfunction.functions</groupId >
15
+ <artifactId >functions-framework-api</artifactId >
16
+ <version >1.0.0</version >
17
+ </dependency >
18
+ </dependencies >
19
+ ```
20
+
21
+ If you are using Gradle to build your functions, you can define the Functions
22
+ Framework dependency in your ` build.gradle ` project file as follows:
23
+
24
+ ``` groovy
25
+ dependencies {
26
+ implementation 'dev.openfunction.functions:functions-framework-api:1.0.0'
27
+ }
28
+
29
+ ```
You can’t perform that action at this time.
0 commit comments