Support tools for functions OCI integrations
December 18, 2025 ยท View on GitHub
This is an optional module that can be added to Functions that resolves some common integrations related to OCI Services handling oracle functions invocations.
- OCI API Gateway support
Enabling the feature in Function:
Edit your pom file and add this library as a dependency:
<dependency>
<groupId>com.fnproject.fn</groupId>
<artifactId>fn-events</artifactId>
<version>${fdk.version}</version>
</dependency>
Optionally, add the fn-events-testing library:
<dependency>
<groupId>com.fnproject.fn</groupId>
<artifactId>fn-events-testing</artifactId>
<version>${fdk.version}</version>
<scope>test</scope>
</dependency>