Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Follow the steps below to add the Comala Workflows Document Management Java API to your app.(warning) You :


Note

You must be already familiar with developing Confluence apps to be able to use the

...

Comala Document Management API


1. Add the appfire-comalatech-public maven repository in your .m2/settings.xml:

Code Block
languagexml
themeRDark
<repository>
    <id>comalatech	<id>appfire-comalatech-public</id>
    <url>https://nexus.comalatechappfire.com/content/groups/repository/comalatech-maven-public/</url>
    <snapshots>
        	<enabled>true</enabled>
    </snapshots>
    <releases>
        	<enabled>true</enabled>
    </releases>
</repository>

2. Add a dependency to the Comala

...

Document Management API in your pom.xml

...


Info

Only available from Comala Document Management

...

6.

...

16.0 onwards, there will always be a corresponding API library with the same version available.


The new Comala Workflows API library coordinates:

Code Block
languagexml
themeRDark
<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 (as of Comala Document Management version 5.1), dependency:

<dependency> <groupId>com.comalatech.workflow</groupId> <artifactId>adhocapi</artifactId> <version>1.17.0<
/version>
    <scope>provided</scope>
</dependency>
Expand
Code Block
languagexml
themeRDark


3. Import the required components

...