# functions-framework-java **Repository Path**: tomzhouhang/functions-framework-java ## Basic Information - **Project Name**: functions-framework-java - **Description**: functions-framework-java - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-06-16 - **Last Updated**: 2023-06-25 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 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: ```xml dev.openfunction.functions functions-framework-api 1.0.0 ``` If you are using Gradle to build your functions, you can define the Functions Framework dependency in your `build.gradle` project file as follows: ```groovy dependencies { implementation 'dev.openfunction.functions:functions-framework-api:1.0.0' } ```