Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

README.md

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