Author: tommaso
Date: Wed Jun 13 10:14:33 2012
New Revision: 1349721
URL: http://svn.apache.org/viewvc?rev=1349721&view=rev
Log:
[HAMA-589] - created ml module structure
Added:
incubator/hama/trunk/ml/
incubator/hama/trunk/ml/pom.xml
incubator/hama/trunk/ml/src/
incubator/hama/trunk/ml/src/main/
incubator/hama/trunk/ml/src/main/java/
incubator/hama/trunk/ml/src/main/java/org/
incubator/hama/trunk/ml/src/main/java/org/apache/
incubator/hama/trunk/ml/src/main/java/org/apache/hama/
incubator/hama/trunk/ml/src/main/java/org/apache/hama/ml/
incubator/hama/trunk/ml/src/main/resources/
incubator/hama/trunk/ml/src/test/
incubator/hama/trunk/ml/src/test/java/
incubator/hama/trunk/ml/src/test/java/org/
incubator/hama/trunk/ml/src/test/java/org/apache/
incubator/hama/trunk/ml/src/test/java/org/apache/hama/
incubator/hama/trunk/ml/src/test/java/org/apache/hama/ml/
incubator/hama/trunk/ml/src/test/resources/
Added: incubator/hama/trunk/ml/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/hama/trunk/ml/pom.xml?rev=1349721&view=auto
==============================================================================
--- incubator/hama/trunk/ml/pom.xml (added)
+++ incubator/hama/trunk/ml/pom.xml Wed Jun 13 10:14:33 2012
@@ -0,0 +1,42 @@
+<!--
+ 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>
+ <groupId>org.apache.hama</groupId>
+ <artifactId>hama-parent</artifactId>
+ <version>0.5.0-SNAPSHOT</version>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.apache.hama</groupId>
+ <artifactId>hama-ml</artifactId>
+ <name>examples</name>
+ <version>0.5.0-SNAPSHOT</version>
+ <packaging>jar</packaging>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.hama</groupId>
+ <artifactId>hama-core</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ </dependencies>
+
+</project>