﻿<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 Modeler UI</name>
  <artifactId>flowable-ui-modeler</artifactId>
  <packaging>pom</packaging>
  
  <parent>
    <groupId>org.flowable</groupId>
    <artifactId>flowable-spring-boot</artifactId>
    <relativePath>../flowable-spring-boot/pom.xml</relativePath>
    <version>6.5.0</version>
  </parent>

	<modules>
		<module>flowable-ui-modeler-logic</module>
		<module>flowable-ui-modeler-rest</module>
		<module>flowable-ui-modeler-conf</module>
		<module>flowable-ui-modeler-app</module>
	</modules>

	<dependencyManagement>
	  <dependencies>
        <dependency>
            <groupId>org.flowable</groupId>
            <artifactId>flowable-ui-modeler-logic</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>org.flowable</groupId>
            <artifactId>flowable-ui-modeler-rest</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>org.flowable</groupId>
            <artifactId>flowable-ui-modeler-conf</artifactId>
            <version>${project.version}</version>
        </dependency>
	 </dependencies>
	</dependencyManagement>

    <profiles>
        <profile>
            <id>docker</id>
            <build>
                <plugins>
                    <plugin>
                        <groupId>org.apache.maven.plugins</groupId>
                        <artifactId>maven-deploy-plugin</artifactId>
                        <configuration>
                            <skip>true</skip>
                        </configuration>
                    </plugin>
                </plugins>
            </build>
        </profile>
    </profiles>
</project>