Repository: metamodel Updated Branches: refs/heads/master 11c5e8cf1 -> 6cf39add2
METAMODEL-148: Updated module structure to have a base hadoop module Project: http://git-wip-us.apache.org/repos/asf/metamodel/repo Commit: http://git-wip-us.apache.org/repos/asf/metamodel/commit/46fdb8f8 Tree: http://git-wip-us.apache.org/repos/asf/metamodel/tree/46fdb8f8 Diff: http://git-wip-us.apache.org/repos/asf/metamodel/diff/46fdb8f8 Branch: refs/heads/master Commit: 46fdb8f8d2ff3d65a5f9f60135362be076d7da1a Parents: 11c5e8c Author: Kasper Sørensen <[email protected]> Authored: Fri Jun 5 12:17:25 2015 +0200 Committer: Kasper Sørensen <[email protected]> Committed: Fri Jun 5 12:17:25 2015 +0200 ---------------------------------------------------------------------- hadoop/.gitignore | 4 ++++ hadoop/pom.xml | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++ hbase/pom.xml | 2 +- pom.xml | 1 + 4 files changed, 62 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/metamodel/blob/46fdb8f8/hadoop/.gitignore ---------------------------------------------------------------------- diff --git a/hadoop/.gitignore b/hadoop/.gitignore new file mode 100644 index 0000000..4e247ee --- /dev/null +++ b/hadoop/.gitignore @@ -0,0 +1,4 @@ +/.settings +/target +/.classpath +/.project http://git-wip-us.apache.org/repos/asf/metamodel/blob/46fdb8f8/hadoop/pom.xml ---------------------------------------------------------------------- diff --git a/hadoop/pom.xml b/hadoop/pom.xml new file mode 100644 index 0000000..77d97d4 --- /dev/null +++ b/hadoop/pom.xml @@ -0,0 +1,56 @@ +<?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 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/maven-v4_0_0.xsd"> + <parent> + <artifactId>MetaModel</artifactId> + <groupId>org.apache.metamodel</groupId> + <version>4.3.5-SNAPSHOT</version> + </parent> + <modelVersion>4.0.0</modelVersion> + <artifactId>MetaModel-hadoop</artifactId> + <name>MetaModel module for Apache Hadoop, HDFS, YARN integration</name> + + <properties> + <hadoop.version>2.6.0</hadoop.version> + </properties> + + <dependencies> + <dependency> + <groupId>org.apache.metamodel</groupId> + <artifactId>MetaModel-core</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>org.apache.hadoop</groupId> + <artifactId>hadoop-client</artifactId> + <version>${hadoop.version}</version> + </dependency> + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>jcl-over-slf4j</artifactId> + </dependency> + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-log4j12</artifactId> + <scope>provided</scope> + </dependency> + + <!-- Test dependencies --> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <scope>test</scope> + </dependency> + + </dependencies> + +</project> \ No newline at end of file http://git-wip-us.apache.org/repos/asf/metamodel/blob/46fdb8f8/hbase/pom.xml ---------------------------------------------------------------------- diff --git a/hbase/pom.xml b/hbase/pom.xml index b3ded40..b363942 100644 --- a/hbase/pom.xml +++ b/hbase/pom.xml @@ -26,7 +26,7 @@ <dependencies> <dependency> <groupId>org.apache.metamodel</groupId> - <artifactId>MetaModel-core</artifactId> + <artifactId>MetaModel-hadoop</artifactId> <version>${project.version}</version> </dependency> <dependency> http://git-wip-us.apache.org/repos/asf/metamodel/blob/46fdb8f8/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 5cb93f3..31b39e1 100644 --- a/pom.xml +++ b/pom.xml @@ -64,6 +64,7 @@ under the License. <module>xml</module> <module>jdbc</module> <module>elasticsearch</module> + <module>hadoop</module> <module>hbase</module> <module>cassandra</module> <module>mongodb</module>
