Skip to content

Latest commit

 

History

History

notification-connector

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

This originates from the official Camunda Connector template for new C8 outbound connectors Check out the Connectors SDK

Connector Template

Camunda Outbound Connector Template

Emulates a Notification outbound connector function .

Build

You can package the Connector by running the following command:

mvn clean package

This will create the following artifacts:

  • A thin JAR without dependencies.
  • An fat JAR containing all dependencies, potentially shaded to avoid classpath conflicts. This will not include the SDK artifacts since those are in scope provided and will be brought along by the respective Connector Runtime executing the Connector.

Test locally

Run unit tests

mvn clean verify

Test with local runtime

Use the Camunda Connector Runtime to run your function as a local Java application.

In your IDE you can also simply navigate to the LocalContainerRuntime class in test scope and run it via your IDE. If necessary, you can adjust application.properties in test scope.