Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 849 Bytes

README.md

File metadata and controls

29 lines (22 loc) · 849 Bytes

Functions Framework for Java

An open source FaaS (Function as a service) framework for writing portable Java functions.

How to use

A function is typically structured as a Maven project. We recommend using an IDE that supports Maven to create the Maven project. Add this dependency in the pom.xml file of your project:

    <dependencies>
        <dependency>
            <groupId>dev.openfunction.functions</groupId>
            <artifactId>functions-framework-api</artifactId>
            <version>1.2.0</version>
        </dependency>
    </dependencies>

If you are using Gradle to build your functions, you can define the Functions Framework dependency in your build.gradle project file as follows:

    dependencies {
        implementation 'dev.openfunction.functions:functions-framework-api:1.2.0'
    }