Update pom.xml for Apache inclusion Signed-off-by: jwills <[email protected]>
Project: http://git-wip-us.apache.org/repos/asf/incubator-crunch/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-crunch/commit/584c7f6e Tree: http://git-wip-us.apache.org/repos/asf/incubator-crunch/tree/584c7f6e Diff: http://git-wip-us.apache.org/repos/asf/incubator-crunch/diff/584c7f6e Branch: refs/heads/master Commit: 584c7f6e472bfed15510cffe03fed80c2737d3c2 Parents: 2ff7247 Author: jwills <[email protected]> Authored: Sat Jul 7 16:48:09 2012 -0700 Committer: jwills <[email protected]> Committed: Sun Jul 8 19:08:42 2012 -0700 ---------------------------------------------------------------------- examples/pom.xml | 56 +++++++++++++++++++++++++++++++++++++++++++++--- 1 files changed, 52 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-crunch/blob/584c7f6e/examples/pom.xml ---------------------------------------------------------------------- diff --git a/examples/pom.xml b/examples/pom.xml index df00ac4..f3e934a 100644 --- a/examples/pom.xml +++ b/examples/pom.xml @@ -1,23 +1,71 @@ +<!-- +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"> <modelVersion>4.0.0</modelVersion> - <groupId>com.cloudera.crunch</groupId> + <groupId>org.apache.crunch</groupId> <artifactId>crunch-examples</artifactId> <packaging>jar</packaging> <version>0.3.0</version> - <name>crunch-examples</name> + <name>Apache Incubator Crunch Examples</name> + + <properties> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + <hadoop.version>0.20.2-cdh3u4</hadoop.version> + </properties> + + <scm> + <url>https://git-wip-us.apache.org/repos/asf?p=incubator-crunch.git</url> + <connection>scm:git:https://git-wip-us.apache.org/repos/asf/incubator-crunch.git</connection> + <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/incubator-crunch.git</developerConnection> + </scm> + + <issueManagement> + <system>JIRA</system> + <url>http://issues.apache.org/jira/browse/CRUNCH</url> + </issueManagement> + + <licenses> + <license> + <name>Apache 2</name> + <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> + <distribution>repo</distribution> + <comments>A business-friendly OSS license</comments> + </license> + </licenses> + + <organization> + <name>The Apache Software Foundation</name> + <url>http://www.apache.org</url> + </organization> <dependencies> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> - <version>r09</version> + <version>11.0.2</version> </dependency> <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-core</artifactId> - <version>0.20.2-cdh3u1</version> + <version>${hadoop.version}</version> <scope>provided</scope> </dependency>
