Repository: reef Updated Branches: refs/heads/master 30a1dac46 -> 266918a1d
[REEF-1044] Add reef-runtime-multi project JIRA: [REEF-1044](https://issues.apache.org/jira/browse/REEF-1044) Pull Request: This closes #707 Project: http://git-wip-us.apache.org/repos/asf/reef/repo Commit: http://git-wip-us.apache.org/repos/asf/reef/commit/266918a1 Tree: http://git-wip-us.apache.org/repos/asf/reef/tree/266918a1 Diff: http://git-wip-us.apache.org/repos/asf/reef/diff/266918a1 Branch: refs/heads/master Commit: 266918a1d3d68ac92e5c0e518889e2b3464f61ba Parents: 30a1dac Author: Boris Shulman <[email protected]> Authored: Fri Dec 4 22:48:30 2015 -0800 Committer: Markus Weimer <[email protected]> Committed: Sat Dec 5 10:23:02 2015 -0800 ---------------------------------------------------------------------- lang/java/reef-runtime-multi/pom.xml | 101 ++++++++++++++++++++++++++++++ pom.xml | 1 + 2 files changed, 102 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/reef/blob/266918a1/lang/java/reef-runtime-multi/pom.xml ---------------------------------------------------------------------- diff --git a/lang/java/reef-runtime-multi/pom.xml b/lang/java/reef-runtime-multi/pom.xml new file mode 100644 index 0000000..e6080be --- /dev/null +++ b/lang/java/reef-runtime-multi/pom.xml @@ -0,0 +1,101 @@ +<?xml version="1.0"?> +<!-- +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 xmlns="http://maven.apache.org/POM/4.0.0" 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> + <parent> + <groupId>org.apache.reef</groupId> + <artifactId>reef-project</artifactId> + <version>0.14.0-SNAPSHOT</version> + <relativePath>../../..</relativePath> + </parent> + <name>REEF Runtime for multiple runtime scenarios</name> + <artifactId>reef-runtime-multi</artifactId> + + <build> + <pluginManagement> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-checkstyle-plugin</artifactId> + <configuration> + <configLocation>lang/java/reef-common/src/main/resources/checkstyle-strict.xml</configLocation> + </configuration> + </plugin> + </plugins> + </pluginManagement> + </build> + + <dependencies> + <dependency> + <groupId>${project.groupId}</groupId> + <artifactId>reef-common</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>${project.groupId}</groupId> + <artifactId>reef-runtime-yarn</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>com.microsoft.windowsazure.storage</groupId> + <artifactId>microsoft-windowsazure-storage-sdk</artifactId> + </dependency> + <dependency> + <groupId>org.apache.httpcomponents</groupId> + <artifactId>httpclient</artifactId> + </dependency> + <dependency> + <groupId>org.codehaus.jackson</groupId> + <artifactId>jackson-mapper-asl</artifactId> + </dependency> + + <dependency> + <groupId>org.codehaus.jackson</groupId> + <artifactId>jackson-core-asl</artifactId> + </dependency> + <dependency> + <groupId>org.apache.hadoop</groupId> + <artifactId>hadoop-common</artifactId> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>org.apache.hadoop</groupId> + <artifactId>hadoop-yarn-common</artifactId> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>org.apache.hadoop</groupId> + <artifactId>hadoop-yarn-api</artifactId> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>org.apache.hadoop</groupId> + <artifactId>hadoop-yarn-client</artifactId> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <scope>test</scope> + </dependency> + </dependencies> + +</project> http://git-wip-us.apache.org/repos/asf/reef/blob/266918a1/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index cc81d61..8dd7024 100644 --- a/pom.xml +++ b/pom.xml @@ -813,6 +813,7 @@ under the License. <module>lang/java/reef-runtime-local</module> <module>lang/java/reef-runtime-yarn</module> <module>lang/java/reef-runtime-mesos</module> + <module>lang/java/reef-runtime-multi</module> <module>lang/java/reef-tang</module> <module>lang/java/reef-tests</module> <module>lang/java/reef-wake</module>
