flowable-bpmn-converter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.flowable</groupId> <artifactId>flowable-bpmn-converter</artifactId> <version>7.2.0</version> </dependency>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <name>Flowable - BPMN Converter</name> <artifactId>flowable-bpmn-converter</artifactId> <parent> <groupId>org.flowable</groupId> <artifactId>flowable-parent</artifactId> <version>7.2.0</version> <relativePath>../flowable-parent</relativePath> </parent> <properties> <flowable.artifact> org.flowable.bpmn.converter </flowable.artifact> <flowable.osgi.export.additional> org.flowable.bpmn.constants,org.flowable.bpmn.util,org.flowable.bpmn.exceptions </flowable.osgi.export.additional> </properties> <dependencies> <dependency> <groupId>org.flowable</groupId> <artifactId>flowable-bpmn-model</artifactId> </dependency> <dependency> <groupId>org.flowable</groupId> <artifactId>flowable-engine-common-api</artifactId> </dependency> <dependency> <groupId>org.flowable</groupId> <artifactId>flowable-process-validation</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.flowable</groupId> <artifactId>flowable-bpmn-layout</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> </dependency> <dependency> <groupId>joda-time</groupId> <artifactId>joda-time</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-reload4j</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.flowable</groupId> <artifactId>flowable-engine-common</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <scope>test</scope> </dependency> </dependencies> </project>