Skip to content

Latest commit

 

History

History
37 lines (29 loc) · 1.24 KB

File metadata and controls

37 lines (29 loc) · 1.24 KB

Support tools for functions OCI integrations

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>

Usage