2019-12-05 09:56:52 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2019-10-31 21:43:47 -04:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2019-12-05 09:56:52 -05:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2019-10-31 21:43:47 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2020-06-13 07:59:06 -04:00
|
|
|
<groupId>com.baeldung</groupId>
|
2019-10-31 21:43:47 -04:00
|
|
|
<artifactId>spring-cloud-data-flow-stream-processing</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<name>spring-cloud-data-flow-stream-processing</name>
|
|
|
|
<packaging>pom</packaging>
|
2019-12-05 09:56:52 -05:00
|
|
|
|
2019-10-31 21:43:47 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
2020-06-13 07:59:06 -04:00
|
|
|
<artifactId>spring-cloud-data-flow</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
2019-10-31 21:43:47 -04:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<modules>
|
|
|
|
<module>data-flow-server</module>
|
|
|
|
<module>data-flow-shell</module>
|
|
|
|
<module>time-source</module>
|
|
|
|
<module>time-processor</module>
|
|
|
|
<module>log-sink</module>
|
|
|
|
</modules>
|
2020-06-13 07:59:06 -04:00
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2019-10-31 21:43:47 -04:00
|
|
|
|
|
|
|
</project>
|