87 lines
2.7 KiB
XML
87 lines
2.7 KiB
XML
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>com.flowable</groupId>
|
|
<artifactId>flowable-parent</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<groupId>com.flowable</groupId>
|
|
<artifactId>flowable-work</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
<name>flowable-work</name>
|
|
<description>flowable-work</description>
|
|
<url/>
|
|
<licenses>
|
|
<license/>
|
|
</licenses>
|
|
<developers>
|
|
<developer/>
|
|
</developers>
|
|
<scm>
|
|
<connection/>
|
|
<developerConnection/>
|
|
<tag/>
|
|
<url/>
|
|
</scm>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.flowable.inspect</groupId>
|
|
<artifactId>flowable-spring-boot-starter-inspect-rest</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.flowable.platform</groupId>
|
|
<artifactId>flowable-platform-default-models</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.flowable.platform</groupId>
|
|
<artifactId>flowable-spring-boot-starter-platform-rest</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.flowable.platform</groupId>
|
|
<artifactId>flowable-tenant-setup</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.h2database</groupId>
|
|
<artifactId>h2</artifactId>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.postgresql</groupId>
|
|
<artifactId>postgresql</artifactId>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.flowable</groupId>
|
|
<artifactId>flowable-platform-bom</artifactId>
|
|
<version>${com.flowable.platform.version}</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|