You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by da...@apache.org on 2009/05/25 14:11:00 UTC

svn commit: r778400 - in /cxf/dosgi/trunk/discovery: distributed/cxf-discovery/pom.xml distributed/pom.xml distributed/zookeeper-wrapper/pom.xml pom.xml

Author: davidb
Date: Mon May 25 12:10:59 2009
New Revision: 778400

URL: http://svn.apache.org/viewvc?rev=778400&view=rev
Log:
Enabling the Zookeeper-based RFC-119 compliant Discovery implementation and unit tests.

Added:
    cxf/dosgi/trunk/discovery/distributed/pom.xml   (with props)
Modified:
    cxf/dosgi/trunk/discovery/distributed/cxf-discovery/pom.xml
    cxf/dosgi/trunk/discovery/distributed/zookeeper-wrapper/pom.xml
    cxf/dosgi/trunk/discovery/pom.xml

Modified: cxf/dosgi/trunk/discovery/distributed/cxf-discovery/pom.xml
URL: http://svn.apache.org/viewvc/cxf/dosgi/trunk/discovery/distributed/cxf-discovery/pom.xml?rev=778400&r1=778399&r2=778400&view=diff
==============================================================================
--- cxf/dosgi/trunk/discovery/distributed/cxf-discovery/pom.xml (original)
+++ cxf/dosgi/trunk/discovery/distributed/cxf-discovery/pom.xml Mon May 25 12:10:59 2009
@@ -24,12 +24,12 @@
     <artifactId>cxf-dosgi-ri-discovery-distributed</artifactId>
     <packaging>bundle</packaging>
     <name>CXF Distributed OSGI Distributed Discovery Service Bundle</name>
-    <version>1.0-SNAPSHOT</version>
+    <version>1.1-SNAPSHOT</version>
 
     <parent>
         <groupId>org.apache.cxf.dosgi</groupId>
         <artifactId>cxf-dosgi-ri-parent</artifactId>
-        <version>1.0-SNAPSHOT</version>
+        <version>1.1-SNAPSHOT</version>
         <relativePath>../../../parent/pom.xml</relativePath>
     </parent>
 

Added: cxf/dosgi/trunk/discovery/distributed/pom.xml
URL: http://svn.apache.org/viewvc/cxf/dosgi/trunk/discovery/distributed/pom.xml?rev=778400&view=auto
==============================================================================
--- cxf/dosgi/trunk/discovery/distributed/pom.xml (added)
+++ cxf/dosgi/trunk/discovery/distributed/pom.xml Mon May 25 12:10:59 2009
@@ -0,0 +1,42 @@
+<?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/maven-v4_0_0.xsd">
+
+    <modelVersion>4.0.0</modelVersion>
+    <groupId>org.apache.cxf.dosgi</groupId>
+    <artifactId>cxf-dosgi-ri-discovery-distributed-parent</artifactId>
+    <version>1.1-SNAPSHOT</version>
+    <packaging>pom</packaging>
+    <name>CXF Distributed OSGI Distributed Discovery Parent</name>
+    <url>http://cxf.apache.org</url>
+
+    <parent>
+      <groupId>org.apache.cxf.dosgi</groupId>
+      <artifactId>cxf-dosgi-ri-parent</artifactId>
+      <version>1.1-SNAPSHOT</version>
+      <relativePath>../../parent/pom.xml</relativePath>
+    </parent>
+
+    <modules>
+      <module>zookeeper-wrapper</module>
+      <module>cxf-discovery</module>
+    </modules> 
+</project>

Propchange: cxf/dosgi/trunk/discovery/distributed/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: cxf/dosgi/trunk/discovery/distributed/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Propchange: cxf/dosgi/trunk/discovery/distributed/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Modified: cxf/dosgi/trunk/discovery/distributed/zookeeper-wrapper/pom.xml
URL: http://svn.apache.org/viewvc/cxf/dosgi/trunk/discovery/distributed/zookeeper-wrapper/pom.xml?rev=778400&r1=778399&r2=778400&view=diff
==============================================================================
--- cxf/dosgi/trunk/discovery/distributed/zookeeper-wrapper/pom.xml (original)
+++ cxf/dosgi/trunk/discovery/distributed/zookeeper-wrapper/pom.xml Mon May 25 12:10:59 2009
@@ -24,12 +24,12 @@
     <artifactId>cxf-dosgi-ri-discovery-distributed-zookeeper-wrapper</artifactId>
     <packaging>bundle</packaging>
     <name>CXF Distributed OSGI Distributed Discovery Zookeeper Library Wrapper Bundle</name>
-    <version>1.0-SNAPSHOT</version>
+    <version>1.1-SNAPSHOT</version>
 
     <parent>
       <groupId>org.apache.cxf.dosgi</groupId>
       <artifactId>cxf-dosgi-ri-parent</artifactId>
-      <version>1.0-SNAPSHOT</version>
+      <version>1.1-SNAPSHOT</version>
       <relativePath>../../../parent/pom.xml</relativePath>
     </parent>
 

Modified: cxf/dosgi/trunk/discovery/pom.xml
URL: http://svn.apache.org/viewvc/cxf/dosgi/trunk/discovery/pom.xml?rev=778400&r1=778399&r2=778400&view=diff
==============================================================================
--- cxf/dosgi/trunk/discovery/pom.xml (original)
+++ cxf/dosgi/trunk/discovery/pom.xml Mon May 25 12:10:59 2009
@@ -35,6 +35,7 @@
 
     <modules>
       <module>local</module>
+      <module>distributed</module>
     </modules>