79 lines
2.5 KiB
XML
79 lines
2.5 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-design-angular</artifactId>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>flowable-local-design-angular</name>
|
|
<description>flowable local Flowable Design Angular</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 Design -->
|
|
<!-- =============== -->
|
|
<dependency>
|
|
<groupId>com.flowable.design.angular</groupId>
|
|
<artifactId>flowable-spring-boot-starter-design</artifactId>
|
|
<version>${com.flowable.platform.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.flowable.platform</groupId>
|
|
<artifactId>flowable-platform-palette-angular</artifactId>
|
|
<version>${com.flowable.platform.version}</version>
|
|
</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-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>
|
|
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project> |