Skip to content

Commit

Permalink
Closes #1596
Browse files Browse the repository at this point in the history
  • Loading branch information
dhalperi committed Dec 13, 2016
2 parents cd8eeea + 6c8d93b commit 2e22a48
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 6 deletions.
Expand Up @@ -24,6 +24,10 @@
<artifactId>${artifactId}</artifactId>
<version>${version}</version>

<properties>
<beam.version>0.4.0-incubating-SNAPSHOT</beam.version>
</properties>

<repositories>
<repository>
<id>apache.snapshots</id>
Expand Down Expand Up @@ -69,14 +73,20 @@
<dependency>
<groupId>org.apache.beam</groupId>
<artifactId>beam-sdks-java-core</artifactId>
<version>0.4.0-incubating-SNAPSHOT</version>
<version>${beam.version}</version>
</dependency>

<!-- Adds a dependency on the Beam direct runner. -->
<!--
By default, the starter project has a dependency on the Beam DirectRunner
to enable development and testing of pipelines. To run on another of the
Beam runners, add its module to this pom.xml according to the
runner-specific setup instructions on the Beam website:
http://beam.incubator.apache.org/documentation/#runners
-->
<dependency>
<groupId>org.apache.beam</groupId>
<artifactId>beam-runners-direct-java</artifactId>
<version>0.4.0-incubating-SNAPSHOT</version>
<version>${beam.version}</version>
<scope>runtime</scope>
</dependency>

Expand Down
Expand Up @@ -24,6 +24,10 @@
<artifactId>basic</artifactId>
<version>0.1</version>

<properties>
<beam.version>0.4.0-incubating-SNAPSHOT</beam.version>
</properties>

<repositories>
<repository>
<id>apache.snapshots</id>
Expand Down Expand Up @@ -69,14 +73,20 @@
<dependency>
<groupId>org.apache.beam</groupId>
<artifactId>beam-sdks-java-core</artifactId>
<version>0.4.0-incubating-SNAPSHOT</version>
<version>${beam.version}</version>
</dependency>

<!-- Adds a dependency on the Beam direct runner. -->
<!--
By default, the starter project has a dependency on the Beam DirectRunner
to enable development and testing of pipelines. To run on another of the
Beam runners, add its module to this pom.xml according to the
runner-specific setup instructions on the Beam website:
http://beam.incubator.apache.org/documentation/#runners
-->
<dependency>
<groupId>org.apache.beam</groupId>
<artifactId>beam-runners-direct-java</artifactId>
<version>0.4.0-incubating-SNAPSHOT</version>
<version>${beam.version}</version>
<scope>runtime</scope>
</dependency>

Expand Down

0 comments on commit 2e22a48

Please sign in to comment.