<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>

	<parent>
		<groupId>com.mantledillusion.essentials</groupId>
		<artifactId>essentials-parent</artifactId>
		<version>1.9.0</version>
		<relativePath>../pom.xml</relativePath>
	</parent>
	
	<artifactId>camunda-essentials-parent</artifactId>
	<version>1.0.0</version>
	<packaging>pom</packaging>
	
	<name>Camunda Essentials</name>
	<description>Camunda Essentials contain useful utilities and composite components for Camunda development.</description>
	<url>http://www.mantledillusion.com</url>

	<properties>
		<camunda.version>7.16.0</camunda.version>
	</properties>

	<dependencyManagement>
		<dependencies>
			<dependency>
				<groupId>org.camunda.bpm</groupId>
				<artifactId>camunda-bom</artifactId>
				<version>${camunda.version}</version>
				<type>pom</type>
				<scope>import</scope>
			</dependency>
		</dependencies>
	</dependencyManagement>

	<modules>
		<module>camunda-migrator</module>
	</modules>
</project>