140 lines
4.6 KiB
XML
140 lines
4.6 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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>flowable-local-work</artifactId>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>flowable-local-work</name>
|
|
<description>flowable local Flowable Work</description>
|
|
|
|
<parent>
|
|
<groupId>com.flowable.local</groupId>
|
|
<artifactId>14</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<dependencies>
|
|
|
|
<!-- flowable local -->
|
|
<!-- =============== -->
|
|
<dependency>
|
|
<groupId>org.postgresql</groupId>
|
|
<artifactId>postgresql</artifactId>
|
|
<version>${org.postgresql.version}</version>
|
|
</dependency>
|
|
|
|
<!-- Flowable Frontend -->
|
|
<!-- ================= -->
|
|
<dependency>
|
|
<groupId>com.flowable.work</groupId>
|
|
<artifactId>flowable-work-frontend</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Flowable Platform -->
|
|
<!-- ================= -->
|
|
<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.flowable.platform</groupId>
|
|
<artifactId>flowable-platform-default-models</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.flowable.platform</groupId>
|
|
<artifactId>flowable-platform-default-idm-models</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Flowable Inspect -->
|
|
<!-- ================ -->
|
|
<dependency>
|
|
<groupId>com.flowable.inspect</groupId>
|
|
<artifactId>flowable-spring-boot-starter-inspect-rest</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Flowable Actuators -->
|
|
<!-- ================== -->
|
|
<dependency>
|
|
<groupId>com.flowable.platform</groupId>
|
|
<artifactId>flowable-spring-boot-starter-platform-actuator</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.micrometer</groupId>
|
|
<artifactId>micrometer-registry-elastic</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Spring Boot -->
|
|
<!-- =========== -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-security</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- Testing -->
|
|
<!-- ======= -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.h2database</groupId>
|
|
<artifactId>h2</artifactId>
|
|
<version>${com.h2database.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.github.wnameless.json</groupId>
|
|
<artifactId>json-flattener</artifactId>
|
|
<version>0.16.6</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.icegreen</groupId>
|
|
<artifactId>greenmail</artifactId>
|
|
<version>2.1.8</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>jakarta.activation</groupId>
|
|
<artifactId>jakarta.activation-api</artifactId>
|
|
<version>2.1.4</version>
|
|
</dependency>
|
|
|
|
<!-- AuditTrailController -->
|
|
<!-- ======= -->
|
|
<dependency>
|
|
<groupId>javax.validation</groupId>
|
|
<artifactId>validation-api</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.poi</groupId>
|
|
<artifactId>poi-ooxml</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|