You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@crunch.apache.org by gr...@apache.org on 2014/04/11 15:17:00 UTC

git commit: CRUNCH-377 Add project DOAP file

Repository: crunch
Updated Branches:
  refs/heads/master a6430bbb1 -> 69896816b


CRUNCH-377 Add project DOAP file


Project: http://git-wip-us.apache.org/repos/asf/crunch/repo
Commit: http://git-wip-us.apache.org/repos/asf/crunch/commit/69896816
Tree: http://git-wip-us.apache.org/repos/asf/crunch/tree/69896816
Diff: http://git-wip-us.apache.org/repos/asf/crunch/diff/69896816

Branch: refs/heads/master
Commit: 69896816bd41f0eede0483c3f7dc61d20dc38e86
Parents: a6430bb
Author: Gabriel Reid <gr...@apache.org>
Authored: Fri Apr 11 15:16:39 2014 +0200
Committer: Gabriel Reid <gr...@apache.org>
Committed: Fri Apr 11 15:16:39 2014 +0200

----------------------------------------------------------------------
 doap.rdf | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 50 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/crunch/blob/69896816/doap.rdf
----------------------------------------------------------------------
diff --git a/doap.rdf b/doap.rdf
new file mode 100644
index 0000000..7e51d0f
--- /dev/null
+++ b/doap.rdf
@@ -0,0 +1,50 @@
+<?xml version="1.0"?>
+<?xml-stylesheet type="text/xsl"?>
+<rdf:RDF xml:lang="en"
+         xmlns="http://usefulinc.com/ns/doap#" 
+         xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" 
+         xmlns:asfext="http://projects.apache.org/ns/asfext#"
+         xmlns:foaf="http://xmlns.com/foaf/0.1/">
+<!--
+    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 rdf:about="http://crunch.apache.org">
+    <created>2014-04-11</created>
+    <license rdf:resource="http://usefulinc.com/doap/licenses/asl20" />
+    <name>Apache Crunch</name>
+    <homepage rdf:resource="http://crunch.apache.org" />
+    <asfext:pmc rdf:resource="http://crunch.apache.org" />
+    <shortdesc>Provides a framework for writing, testing, and running MapReduce pipelines</shortdesc>
+    <description>The Apache Crunch Java library provides a framework for writing, testing, and running MapReduce pipelines. Its goal is to make pipelines that are composed of many user-defined functions simple to write, easy to test, and efficient to run.
+
+Running on top of Hadoop MapReduce and Apache Spark, the Apache Crunchâ„¢ library is a simple Java API for tasks like joining and data aggregation that are tedious to implement on plain MapReduce. The APIs are especially useful when processing data that does not fit naturally into relational model, such as time series, serialized object formats like protocol buffers or Avro records, and HBase rows and columns. For Scala users, there is the Scrunch API, which is built on top of the Java APIs and includes a REPL (read-eval-print loop) for creating MapReduce pipelines.</description>
+    <bug-database rdf:resource="https://issues.apache.org/jira/browse/CRUNCH" />
+    <mailing-list rdf:resource="http://crunch.apache.org/mailing-lists.html" />
+    <download-page rdf:resource="http://www.apache.org/dyn/closer.cgi/crunch" />
+    <programming-language>Java</programming-language>
+    <programming-language>Scala</programming-language>
+    <category rdf:resource="http://projects.apache.org/category/big-data" />
+    <category rdf:resource="http://projects.apache.org/category/library" />
+
+    <repository>
+      <GitRepository>
+        <location rdf:resource="https://git-wip-us.apache.org/repos/asf/crunch.git"/>
+        <browse rdf:resource="https://git-wip-us.apache.org/repos/asf/crunch.git"/>
+      </GitRepository>
+    </repository>
+
+  </Project>
+</rdf:RDF>