[maven] add project for Runners
Project: http://git-wip-us.apache.org/repos/asf/incubator-beam/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-beam/commit/730f092c Tree: http://git-wip-us.apache.org/repos/asf/incubator-beam/tree/730f092c Diff: http://git-wip-us.apache.org/repos/asf/incubator-beam/diff/730f092c Branch: refs/heads/master Commit: 730f092c842c8575c961398559b6ff4173f40b5f Parents: dc7786f Author: Maximilian Michels <[email protected]> Authored: Tue Mar 1 17:57:02 2016 +0100 Committer: Davor Bonaci <[email protected]> Committed: Fri Mar 4 10:04:23 2016 -0800 ---------------------------------------------------------------------- pom.xml | 1 + runners/pom.xml | 43 +++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 44 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-beam/blob/730f092c/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index ba130d2..de47ff5 100644 --- a/pom.xml +++ b/pom.xml @@ -91,6 +91,7 @@ <packaging>pom</packaging> <modules> <module>sdk</module> + <module>runners</module> <module>examples</module> <module>maven-archetypes/starter</module> <module>maven-archetypes/examples</module> http://git-wip-us.apache.org/repos/asf/incubator-beam/blob/730f092c/runners/pom.xml ---------------------------------------------------------------------- diff --git a/runners/pom.xml b/runners/pom.xml new file mode 100644 index 0000000..757e208 --- /dev/null +++ b/runners/pom.xml @@ -0,0 +1,43 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you under the Apache License, Version 2.0 (the + "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +--> +<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" + xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> + + <modelVersion>4.0.0</modelVersion> + + <parent> + <groupId>com.google.cloud.dataflow</groupId> + <artifactId>google-cloud-dataflow-java-sdk-parent</artifactId> + <version>1.5.0-SNAPSHOT</version> + </parent> + + <groupId>org.apache.beam</groupId> + <artifactId>runners</artifactId> + <version>1.5.0-SNAPSHOT</version> + + <packaging>pom</packaging> + + <name>Beam Runners</name> + + <modules> + <module>flink</module> + </modules> + +</project>
