You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@helix.apache.org by ol...@apache.org on 2012/12/08 02:05:08 UTC

[5/5] git commit: add recipes modules in the build to be sure samples still compile

add recipes modules in the build to be sure samples still compile


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

Branch: refs/heads/master
Commit: 29646095bf396886e7f6b9ba30ab5ed7f9db8d08
Parents: f4747f9
Author: olivier lamy <ol...@apache.org>
Authored: Sat Dec 8 01:32:03 2012 +0100
Committer: olivier lamy <ol...@apache.org>
Committed: Sat Dec 8 01:32:03 2012 +0100

----------------------------------------------------------------------
 pom.xml                                      |    1 +
 recipes/pom.xml                              |   37 +++++++++++++++++++++
 recipes/rabbitmq-consumer-group/pom.xml      |   10 ++++-
 recipes/rsync-replicated-file-system/pom.xml |   10 ++++-
 4 files changed, 54 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-helix/blob/29646095/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index e519d16..ad251a8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -40,6 +40,7 @@ under the License.
     <module>helix-core</module>
     <module>helix-admin-webapp</module>
     <module>mockservice</module>
+    <module>recipes</module>
   </modules>
 
   <mailingLists>

http://git-wip-us.apache.org/repos/asf/incubator-helix/blob/29646095/recipes/pom.xml
----------------------------------------------------------------------
diff --git a/recipes/pom.xml b/recipes/pom.xml
new file mode 100644
index 0000000..ea5fe6c
--- /dev/null
+++ b/recipes/pom.xml
@@ -0,0 +1,37 @@
+<?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/xsd/maven-4.0.0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.helix</groupId>
+    <artifactId>helix</artifactId>
+    <version>0.6-incubating-SNAPSHOT</version>
+  </parent>
+  <groupId>org.apache.helix.recipes</groupId>
+  <artifactId>recipes</artifactId>
+  <packaging>pom</packaging>
+  <name>Helix :: Recipes</name>
+
+  <modules>
+    <module>rabbitmq-consumer-group</module>
+    <module>rsync-replicated-file-system</module>
+  </modules>
+
+</project>

http://git-wip-us.apache.org/repos/asf/incubator-helix/blob/29646095/recipes/rabbitmq-consumer-group/pom.xml
----------------------------------------------------------------------
diff --git a/recipes/rabbitmq-consumer-group/pom.xml b/recipes/rabbitmq-consumer-group/pom.xml
index cb44cc6..2643bea 100644
--- a/recipes/rabbitmq-consumer-group/pom.xml
+++ b/recipes/rabbitmq-consumer-group/pom.xml
@@ -21,11 +21,17 @@ 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.linkedin.helix</groupId>
+
+  <parent>
+    <groupId>org.apache.helix.recipes</groupId>
+    <artifactId>recipes</artifactId>
+    <version>0.6-incubating-SNAPSHOT</version>
+  </parent>
+
   <artifactId>rabbitmq-consumer-group</artifactId>
   <packaging>jar</packaging>
   <version>1.0-SNAPSHOT</version>
-  <name>rabbitmq-consumer-group</name>
+  <name>Helix :: Recipes :: Rabbitmq Consumer Group</name>
 
   <dependencies>
     <dependency>

http://git-wip-us.apache.org/repos/asf/incubator-helix/blob/29646095/recipes/rsync-replicated-file-system/pom.xml
----------------------------------------------------------------------
diff --git a/recipes/rsync-replicated-file-system/pom.xml b/recipes/rsync-replicated-file-system/pom.xml
index facaacf..3e13818 100644
--- a/recipes/rsync-replicated-file-system/pom.xml
+++ b/recipes/rsync-replicated-file-system/pom.xml
@@ -20,11 +20,17 @@ 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.linkedin.helix</groupId>
+
+  <parent>
+    <groupId>org.apache.helix.recipes</groupId>
+    <artifactId>recipes</artifactId>
+    <version>0.6-incubating-SNAPSHOT</version>
+  </parent>
+
   <artifactId>rsync-replicated-file-system</artifactId>
   <packaging>jar</packaging>
   <version>1.0-SNAPSHOT</version>
-  <name>rsync-replicated-file-system</name>
+  <name>Helix :: Recipes :: Rsync Replicated File System</name>
 
   <dependencies>
     <dependency>