Preserving the maven revision feature from the previous commit, but perform a bit more restructuring the hierarchy.
42 lines
1.5 KiB
XML
42 lines
1.5 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>
|
|
|
|
<parent>
|
|
<groupId>org.springframework.cloud.fn</groupId>
|
|
<artifactId>spring-functions-parent</artifactId>
|
|
<version>${revision}</version>
|
|
<relativePath>../../spring-functions-parent</relativePath>
|
|
</parent>
|
|
|
|
<artifactId>tasklauncher-function</artifactId>
|
|
<name>tasklauncher-function</name>
|
|
<description>Spring Native Function for applying filter SpEL expressions</description>
|
|
|
|
<properties>
|
|
<spring.cloud.dataflow.version>2.5.1.RELEASE</spring.cloud.dataflow.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-dataflow-rest-client</artifactId>
|
|
<version>${spring.cloud.dataflow.version}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-scheduler-spi</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-skipper</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|