93 lines
3.0 KiB
XML
93 lines
3.0 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
||
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||
xmlns="http://maven.apache.org/POM/4.0.0"
|
||
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>taskana-rest-spring-example-common</artifactId>
|
||
|
||
<name>${project.groupId}:${project.artifactId}</name>
|
||
<description>groups the minimum required configuration for a taskana REST APP</description>
|
||
|
||
<parent>
|
||
<groupId>pro.taskana</groupId>
|
||
<artifactId>taskana-rest-parent</artifactId>
|
||
<version>1.1.6-SNAPSHOT</version>
|
||
<relativePath>../pom.xml</relativePath>
|
||
</parent>
|
||
|
||
<dependencies>
|
||
<dependency>
|
||
<groupId>pro.taskana</groupId>
|
||
<artifactId>taskana-rest-spring</artifactId>
|
||
<version>${project.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-web</artifactId>
|
||
<version>${version.spring.boot}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-security</artifactId>
|
||
<version>${version.spring.boot}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-jdbc</artifactId>
|
||
<version>${version.spring.boot}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.springframework.plugin</groupId>
|
||
<artifactId>spring-plugin-core</artifactId>
|
||
<version>${version.spring.core}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.springframework.ldap</groupId>
|
||
<artifactId>spring-ldap-core</artifactId>
|
||
<version>${version.spring.ldap}</version>
|
||
</dependency>
|
||
<!--
|
||
Since taskana-web packs its content in /static, we do not have to unpack it again.
|
||
However, when any local change has to be done to that folder you have to copy
|
||
target/classes/static manually from taskana-web.
|
||
-->
|
||
<dependency>
|
||
<groupId>pro.taskana</groupId>
|
||
<artifactId>taskana-web</artifactId>
|
||
<version>${project.version}</version>
|
||
</dependency>
|
||
<!-- Tests -->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-test</artifactId>
|
||
<version>${version.spring.boot}</version>
|
||
<scope>test</scope>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.springframework.security</groupId>
|
||
<artifactId>spring-security-test</artifactId>
|
||
<version>${version.spring}</version>
|
||
<scope>test</scope>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.springframework.ldap</groupId>
|
||
<artifactId>spring-ldap-test</artifactId>
|
||
<version>${version.spring.ldap}</version>
|
||
<scope>test</scope>
|
||
<exclusions>
|
||
<exclusion>
|
||
<groupId>commons-logging</groupId>
|
||
<artifactId>commons-logging</artifactId>
|
||
</exclusion>
|
||
</exclusions>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
||
<version>${version.spring.boot}</version>
|
||
</dependency>
|
||
</dependencies>
|
||
|
||
</project> |