<?xml version="1.0" encoding="UTF-8"?>
<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 - Engine Common API</name>
	<artifactId>flowable-engine-common-api</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.common.engine.api
		</flowable.artifact>
		<flowable.osgi.export.additional>
			org.flowable.common.engine.api,
			org.flowable.common.engine.api.delegate.event,
            org.flowable.common.engine.api.history,
			org.flowable.common.engine.api.io,
			org.flowable.common.engine.api.management,
			org.flowable.common.engine.api.query,
		</flowable.osgi.export.additional>
	</properties>
    
    <dependencies>
        <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-lang3</artifactId>
        </dependency>
    </dependencies>

</project>