An open source FaaS (Function as a service) framework for writing portable Java functions.
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'
    }