Page History
...
Info |
---|
You must be already familiar with developing Confluence pluginsapps to be able to use the Workflows API |
...
2. Add a dependency to the Comala Workflows API in your pom.xml
Note |
---|
From Comala Workflows 5.1.0 onwards, there will always be a corresponding API library with the same version available |
The new Comala Workflows API library coordinates:
Code Block | ||
---|---|---|
| ||
<dependency>
<groupId>com.comalatech.workflow</groupId>
<artifactId>workflows-api</artifactId>
<version>[replace with Comala Workflows version of your choice]</version>
<scope>provided</scope>
</dependency> |
Previous API library, now deprecated, dependency:
Expand | |||||
---|---|---|---|---|---|
|
3. Import the required components
...