Author: edwardyoon Date: Thu Sep 1 09:29:04 2011 New Revision: 1163962 URL: http://svn.apache.org/viewvc?rev=1163962&view=rev Log: Create a separate maven module and add basic structure for the Graph
Added: incubator/hama/trunk/graph/ incubator/hama/trunk/graph/pom.xml incubator/hama/trunk/graph/src/ incubator/hama/trunk/graph/src/main/ incubator/hama/trunk/graph/src/main/java/ incubator/hama/trunk/graph/src/main/java/org/ incubator/hama/trunk/graph/src/main/java/org/apache/ incubator/hama/trunk/graph/src/main/java/org/apache/hama/ incubator/hama/trunk/graph/src/main/java/org/apache/hama/graph/ incubator/hama/trunk/graph/src/main/java/org/apache/hama/graph/package.html incubator/hama/trunk/graph/src/main/resources/ incubator/hama/trunk/graph/src/test/ incubator/hama/trunk/graph/src/test/java/ incubator/hama/trunk/graph/src/test/java/org/ incubator/hama/trunk/graph/src/test/java/org/apache/ incubator/hama/trunk/graph/src/test/java/org/apache/hama/ incubator/hama/trunk/graph/src/test/java/org/apache/hama/graph/ incubator/hama/trunk/graph/src/test/resources/ Modified: incubator/hama/trunk/CHANGES.txt incubator/hama/trunk/pom.xml Modified: incubator/hama/trunk/CHANGES.txt URL: http://svn.apache.org/viewvc/incubator/hama/trunk/CHANGES.txt?rev=1163962&r1=1163961&r2=1163962&view=diff ============================================================================== --- incubator/hama/trunk/CHANGES.txt (original) +++ incubator/hama/trunk/CHANGES.txt Thu Sep 1 09:29:04 2011 @@ -4,6 +4,7 @@ Release 0.4 - Unreleased NEW FEATURES + HAMA-428: Create a separate maven module and add basic structure for the Graph (edwardyoon) HAMA-398: Add CheckPointer and saving messages for future fault-tolerant systems (ChiaHung Lin via edwardyoon) BUG FIXES Added: incubator/hama/trunk/graph/pom.xml URL: http://svn.apache.org/viewvc/incubator/hama/trunk/graph/pom.xml?rev=1163962&view=auto ============================================================================== --- incubator/hama/trunk/graph/pom.xml (added) +++ incubator/hama/trunk/graph/pom.xml Thu Sep 1 09:29:04 2011 @@ -0,0 +1,54 @@ +<!-- + 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.4.0-incubating-SNAPSHOT</version> + </parent> + + <modelVersion>4.0.0</modelVersion> + <groupId>org.apache.hama</groupId> + <artifactId>hama-graph</artifactId> + <name>Apache Hama Graph Package</name> + <version>0.4.0-incubating-SNAPSHOT</version> + <packaging>jar</packaging> + + <dependencies> + <dependency> + <groupId>org.apache.hama</groupId> + <artifactId>hama-core</artifactId> + <version>${project.version}</version> + </dependency> + </dependencies> + <build> + <finalName>hama-graph-${project.version}</finalName> + <pluginManagement> + <plugins> + <plugin> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <skipTests>true</skipTests> + </configuration> + </plugin> + </plugins> + </pluginManagement> + </build> +</project> Added: incubator/hama/trunk/graph/src/main/java/org/apache/hama/graph/package.html URL: http://svn.apache.org/viewvc/incubator/hama/trunk/graph/src/main/java/org/apache/hama/graph/package.html?rev=1163962&view=auto ============================================================================== --- incubator/hama/trunk/graph/src/main/java/org/apache/hama/graph/package.html (added) +++ incubator/hama/trunk/graph/src/main/java/org/apache/hama/graph/package.html Thu Sep 1 09:29:04 2011 @@ -0,0 +1,23 @@ +<html> + +<!-- + 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. +--> + +<body> +Hama's graph computing framework. +</body> +</html> Modified: incubator/hama/trunk/pom.xml URL: http://svn.apache.org/viewvc/incubator/hama/trunk/pom.xml?rev=1163962&r1=1163961&r2=1163962&view=diff ============================================================================== --- incubator/hama/trunk/pom.xml (original) +++ incubator/hama/trunk/pom.xml Thu Sep 1 09:29:04 2011 @@ -185,6 +185,7 @@ <modules> <module>core</module> + <module>graph</module> <module>examples</module> </modules>