2020-02-19 16:28:48 -05:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
2020-02-26 04:20:31 -05:00
|
|
|
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>
|
2020-02-19 16:28:48 -05:00
|
|
|
|
2020-02-26 04:20:31 -05:00
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>parent-modules</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
2020-02-19 16:28:48 -05:00
|
|
|
|
2020-02-26 04:20:31 -05:00
|
|
|
<groupId>com.baeldung.apache</groupId>
|
|
|
|
<artifactId>apache-beam</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
2020-02-19 16:28:48 -05:00
|
|
|
|
2020-02-26 04:20:31 -05:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.beam</groupId>
|
|
|
|
<artifactId>beam-sdks-java-core</artifactId>
|
|
|
|
<version>${beam.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<!-- runtime scoped -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.beam</groupId>
|
|
|
|
<artifactId>beam-runners-direct-java</artifactId>
|
|
|
|
<version>${beam.version}</version>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
<!-- test scoped -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.assertj</groupId>
|
|
|
|
<artifactId>assertj-core</artifactId>
|
|
|
|
<version>${assertj.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2020-02-19 16:28:48 -05:00
|
|
|
|
2020-02-26 04:20:31 -05:00
|
|
|
<properties>
|
|
|
|
<beam.version>2.19.0</beam.version>
|
|
|
|
<assertj.version>3.6.1</assertj.version>
|
|
|
|
</properties>
|
2020-02-19 16:28:48 -05:00
|
|
|
|
2020-03-04 22:12:17 -05:00
|
|
|
</project>
|