<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 - Batch Service</name>
	<artifactId>flowable-batch-service</artifactId>

	<parent>
		<groupId>org.flowable</groupId>
        <artifactId>flowable-parent</artifactId>
		<version>7.2.0</version>
        <relativePath>../flowable-parent</relativePath>
	</parent>

	<dependencies>
        <dependency>
            <groupId>org.flowable</groupId>
            <artifactId>flowable-batch-service-api</artifactId>
        </dependency>
		<dependency>
			<groupId>org.flowable</groupId>
			<artifactId>flowable-engine-common-api</artifactId>
		</dependency>
		<dependency>
			<groupId>org.flowable</groupId>
			<artifactId>flowable-engine-common</artifactId>
		</dependency>
		<dependency>
			<groupId>org.apache.commons</groupId>
			<artifactId>commons-lang3</artifactId>
		</dependency>
		<dependency>
			<groupId>org.mybatis</groupId>
			<artifactId>mybatis</artifactId>
		</dependency>
		<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>spring-beans</artifactId>
		</dependency>
        <dependency>
            <groupId>joda-time</groupId>
            <artifactId>joda-time</artifactId>
        </dependency>
		<dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>slf4j-api</artifactId>
		</dependency>
		<dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>jcl-over-slf4j</artifactId>
		</dependency>
	</dependencies>

	<properties>
		<flowable.artifact>
			org.flowable.batch.service
		</flowable.artifact>
		<flowable.osgi.export.additional>
			org.flowable.batch.service.db.mapping.entity
		</flowable.osgi.export.additional>
		<flowable.osgi.import.additional>
			org.springframework*;resolution:=optional
		</flowable.osgi.import.additional>
	</properties>

</project>
