Return-Path: Delivered-To: apmail-cxf-commits-archive@www.apache.org Received: (qmail 25029 invoked from network); 17 Dec 2009 14:45:41 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 17 Dec 2009 14:45:41 -0000 Received: (qmail 46500 invoked by uid 500); 17 Dec 2009 14:45:40 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 46441 invoked by uid 500); 17 Dec 2009 14:45:40 -0000 Mailing-List: contact commits-help@cxf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cxf.apache.org Delivered-To: mailing list commits@cxf.apache.org Received: (qmail 46432 invoked by uid 99); 17 Dec 2009 14:45:40 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 17 Dec 2009 14:45:40 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 17 Dec 2009 14:45:38 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id B59C523889F7; Thu, 17 Dec 2009 14:45:16 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r891733 - in /cxf/dosgi/trunk: discovery/distributed/ discovery/distributed/cxf-discovery/ discovery/distributed/cxf-discovery/src/main/java/org/apache/cxf/dosgi/discovery/zookeeper/ discovery/distributed/zookeeper-server-config/ discovery/... Date: Thu, 17 Dec 2009 14:45:05 -0000 To: commits@cxf.apache.org From: davidb@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20091217144516.B59C523889F7@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: davidb Date: Thu Dec 17 14:44:40 2009 New Revision: 891733 URL: http://svn.apache.org/viewvc?rev=891733&view=rev Log: Realigned the Maven module names. Also re-applied the fix for CXF-2578 as this is the only fix that went in after CXF 1.1 was released. Modified: cxf/dosgi/trunk/discovery/distributed/cxf-discovery/pom.xml cxf/dosgi/trunk/discovery/distributed/cxf-discovery/src/main/java/org/apache/cxf/dosgi/discovery/zookeeper/Activator.java cxf/dosgi/trunk/discovery/distributed/pom.xml cxf/dosgi/trunk/discovery/distributed/zookeeper-server-config/pom.xml cxf/dosgi/trunk/discovery/distributed/zookeeper-server/pom.xml cxf/dosgi/trunk/discovery/distributed/zookeeper-wrapper/pom.xml cxf/dosgi/trunk/discovery/local/pom.xml cxf/dosgi/trunk/dsw/cxf-dsw/pom.xml cxf/dosgi/trunk/dsw/cxf-dsw/src/main/java/org/apache/cxf/dosgi/dsw/Activator.java cxf/dosgi/trunk/dsw/cxf-osgi-remote-service-admin-interfaces/pom.xml cxf/dosgi/trunk/dsw/cxf-topology-manager/pom.xml cxf/dosgi/trunk/felix/pom.xml cxf/dosgi/trunk/felix/profiles/pom.xml cxf/dosgi/trunk/felix/shell.tui/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=891733&r1=891732&r2=891733&view=diff ============================================================================== --- cxf/dosgi/trunk/discovery/distributed/cxf-discovery/pom.xml (original) +++ cxf/dosgi/trunk/discovery/distributed/cxf-discovery/pom.xml Thu Dec 17 14:44:40 2009 @@ -23,7 +23,7 @@ org.apache.cxf.dosgi cxf-dosgi-ri-discovery-distributed bundle - CXF Distributed OSGI Distributed Discovery Service Bundle + Distributed OSGI Distributed Discovery Service Bundle 1.2-SNAPSHOT Modified: cxf/dosgi/trunk/discovery/distributed/cxf-discovery/src/main/java/org/apache/cxf/dosgi/discovery/zookeeper/Activator.java URL: http://svn.apache.org/viewvc/cxf/dosgi/trunk/discovery/distributed/cxf-discovery/src/main/java/org/apache/cxf/dosgi/discovery/zookeeper/Activator.java?rev=891733&r1=891732&r2=891733&view=diff ============================================================================== --- cxf/dosgi/trunk/discovery/distributed/cxf-discovery/src/main/java/org/apache/cxf/dosgi/discovery/zookeeper/Activator.java (original) +++ cxf/dosgi/trunk/discovery/distributed/cxf-discovery/src/main/java/org/apache/cxf/dosgi/discovery/zookeeper/Activator.java Thu Dec 17 14:44:40 2009 @@ -19,13 +19,9 @@ package org.apache.cxf.dosgi.discovery.zookeeper; import java.io.IOException; -import java.util.Collection; -import java.util.Collections; import java.util.Dictionary; import java.util.Enumeration; import java.util.Hashtable; -import java.util.Properties; -import java.util.logging.Level; import java.util.logging.Logger; import org.osgi.framework.BundleActivator; @@ -43,7 +39,7 @@ private Dictionary zkProperties; private BundleContext bctx; - public void start(BundleContext bc) throws Exception { + public synchronized void start(BundleContext bc) throws Exception { bctx = bc; zkProperties = getCMDefaults(); @@ -64,7 +60,7 @@ } - public void updated(Dictionary configuration) throws ConfigurationException { + public synchronized void updated(Dictionary configuration) throws ConfigurationException { if (configuration == null) { Modified: cxf/dosgi/trunk/discovery/distributed/pom.xml URL: http://svn.apache.org/viewvc/cxf/dosgi/trunk/discovery/distributed/pom.xml?rev=891733&r1=891732&r2=891733&view=diff ============================================================================== --- cxf/dosgi/trunk/discovery/distributed/pom.xml (original) +++ cxf/dosgi/trunk/discovery/distributed/pom.xml Thu Dec 17 14:44:40 2009 @@ -25,7 +25,7 @@ cxf-dosgi-ri-discovery-distributed-parent 1.2-SNAPSHOT pom - CXF Distributed OSGI Distributed Discovery Parent + Distributed OSGI Distributed Discovery Parent http://cxf.apache.org Modified: cxf/dosgi/trunk/discovery/distributed/zookeeper-server-config/pom.xml URL: http://svn.apache.org/viewvc/cxf/dosgi/trunk/discovery/distributed/zookeeper-server-config/pom.xml?rev=891733&r1=891732&r2=891733&view=diff ============================================================================== --- cxf/dosgi/trunk/discovery/distributed/zookeeper-server-config/pom.xml (original) +++ cxf/dosgi/trunk/discovery/distributed/zookeeper-server-config/pom.xml Thu Dec 17 14:44:40 2009 @@ -23,7 +23,7 @@ org.apache.cxf.dosgi cxf-dosgi-ri-discovery-distributed-zookeeper-server-config bundle - CXF Distributed OSGI Distributed Discovery Zookeeper Server Control Configuration Bundle + Distributed OSGI Distributed Discovery Zookeeper Server Control Configuration Bundle This bundle provides some default OSGi Configuration Admin data and is only useful for use in the OSGi CT suite 1.2-SNAPSHOT Modified: cxf/dosgi/trunk/discovery/distributed/zookeeper-server/pom.xml URL: http://svn.apache.org/viewvc/cxf/dosgi/trunk/discovery/distributed/zookeeper-server/pom.xml?rev=891733&r1=891732&r2=891733&view=diff ============================================================================== --- cxf/dosgi/trunk/discovery/distributed/zookeeper-server/pom.xml (original) +++ cxf/dosgi/trunk/discovery/distributed/zookeeper-server/pom.xml Thu Dec 17 14:44:40 2009 @@ -23,7 +23,7 @@ org.apache.cxf.dosgi cxf-dosgi-ri-discovery-distributed-zookeeper-server bundle - CXF Distributed OSGI Distributed Discovery Zookeeper Server Control Bundle + Distributed OSGI Distributed Discovery Zookeeper Server Control Bundle 1.2-SNAPSHOT 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=891733&r1=891732&r2=891733&view=diff ============================================================================== --- cxf/dosgi/trunk/discovery/distributed/zookeeper-wrapper/pom.xml (original) +++ cxf/dosgi/trunk/discovery/distributed/zookeeper-wrapper/pom.xml Thu Dec 17 14:44:40 2009 @@ -23,7 +23,7 @@ org.apache.cxf.dosgi cxf-dosgi-ri-discovery-distributed-zookeeper-wrapper bundle - CXF Distributed OSGI Distributed Discovery Zookeeper Library Wrapper Bundle + Distributed OSGI Distributed Discovery Zookeeper Library Wrapper Bundle 1.2-SNAPSHOT Modified: cxf/dosgi/trunk/discovery/local/pom.xml URL: http://svn.apache.org/viewvc/cxf/dosgi/trunk/discovery/local/pom.xml?rev=891733&r1=891732&r2=891733&view=diff ============================================================================== --- cxf/dosgi/trunk/discovery/local/pom.xml (original) +++ cxf/dosgi/trunk/discovery/local/pom.xml Thu Dec 17 14:44:40 2009 @@ -23,7 +23,7 @@ org.apache.cxf.dosgi cxf-dosgi-ri-discovery-local bundle - CXF Distributed OSGI Local Discovery Service Bundle + Distributed OSGI Local Discovery Service Bundle 1.2-SNAPSHOT Modified: cxf/dosgi/trunk/dsw/cxf-dsw/pom.xml URL: http://svn.apache.org/viewvc/cxf/dosgi/trunk/dsw/cxf-dsw/pom.xml?rev=891733&r1=891732&r2=891733&view=diff ============================================================================== --- cxf/dosgi/trunk/dsw/cxf-dsw/pom.xml (original) +++ cxf/dosgi/trunk/dsw/cxf-dsw/pom.xml Thu Dec 17 14:44:40 2009 @@ -22,7 +22,7 @@ org.apache.cxf.dosgi cxf-dosgi-ri-dsw-cxf bundle - CXF Distribution Software Bundle + Distributed OSGi Distribution Software Bundle 1.2-SNAPSHOT Modified: cxf/dosgi/trunk/dsw/cxf-dsw/src/main/java/org/apache/cxf/dosgi/dsw/Activator.java URL: http://svn.apache.org/viewvc/cxf/dosgi/trunk/dsw/cxf-dsw/src/main/java/org/apache/cxf/dosgi/dsw/Activator.java?rev=891733&r1=891732&r2=891733&view=diff ============================================================================== --- cxf/dosgi/trunk/dsw/cxf-dsw/src/main/java/org/apache/cxf/dosgi/dsw/Activator.java (original) +++ cxf/dosgi/trunk/dsw/cxf-dsw/src/main/java/org/apache/cxf/dosgi/dsw/Activator.java Thu Dec 17 14:44:40 2009 @@ -44,7 +44,7 @@ private ServiceRegistration decoratorReg; - public void start(BundleContext context) throws Exception { + public synchronized void start(BundleContext context) throws Exception { // Disable the fast infoset as it's not compatible (yet) with OSGi System.setProperty("org.apache.cxf.nofastinfoset", "true"); @@ -121,7 +121,7 @@ return defaults; } - public void updated(Dictionary props) throws ConfigurationException { + public synchronized void updated(Dictionary props) throws ConfigurationException { if (props != null && CONFIG_SERVICE_PID.equals(props.get(Constants.SERVICE_PID))) { // topManager.updated(props); } Modified: cxf/dosgi/trunk/dsw/cxf-osgi-remote-service-admin-interfaces/pom.xml URL: http://svn.apache.org/viewvc/cxf/dosgi/trunk/dsw/cxf-osgi-remote-service-admin-interfaces/pom.xml?rev=891733&r1=891732&r2=891733&view=diff ============================================================================== --- cxf/dosgi/trunk/dsw/cxf-osgi-remote-service-admin-interfaces/pom.xml (original) +++ cxf/dosgi/trunk/dsw/cxf-osgi-remote-service-admin-interfaces/pom.xml Thu Dec 17 14:44:40 2009 @@ -20,7 +20,7 @@ org.apache.cxf.dosgi cxf-dosgi-remote-service-admin-interfaces bundle - CXF OSGi Remote Service Admin interfaces + Distributed OSGi Remote Service Admin interfaces ${remote.service.admin.interfaces.version} @@ -31,15 +31,15 @@ - - cxf-dosgi-remote-service-admin-interfaces - org.osgi.service.remoteserviceadmin - - - - - - + + cxf-dosgi-remote-service-admin-interfaces + org.osgi.service.remoteserviceadmin + + + + + + org.apache.felix org.apache.felix.framework @@ -52,45 +52,45 @@ provided - - - - + + + + - org.apache.felix - maven-bundle-plugin - 1.2.1 - true - - META-INF - - ${bundle.symbolicName} - ${pom.version} - ${bundle.namespace}.*;version="${pom.version}" - *;scope=compile|runtime;inline=false - target/dependency - true - - - - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - verify - - jar - - - - + org.apache.felix + maven-bundle-plugin + 1.2.1 + true + + META-INF + + ${bundle.symbolicName} + ${pom.version} + ${bundle.namespace}.*;version="${pom.version}" + *;scope=compile|runtime;inline=false + target/dependency + true + + + + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + verify + + jar + + + + org.apache.maven.plugins Modified: cxf/dosgi/trunk/dsw/cxf-topology-manager/pom.xml URL: http://svn.apache.org/viewvc/cxf/dosgi/trunk/dsw/cxf-topology-manager/pom.xml?rev=891733&r1=891732&r2=891733&view=diff ============================================================================== --- cxf/dosgi/trunk/dsw/cxf-topology-manager/pom.xml (original) +++ cxf/dosgi/trunk/dsw/cxf-topology-manager/pom.xml Thu Dec 17 14:44:40 2009 @@ -20,7 +20,7 @@ org.apache.cxf.dosgi cxf-dosgi-topology-manager bundle - CXF OSGi Topology Manager implementation + Distributed OSGi Topology Manager implementation 1.2-SNAPSHOT Modified: cxf/dosgi/trunk/felix/pom.xml URL: http://svn.apache.org/viewvc/cxf/dosgi/trunk/felix/pom.xml?rev=891733&r1=891732&r2=891733&view=diff ============================================================================== --- cxf/dosgi/trunk/felix/pom.xml (original) +++ cxf/dosgi/trunk/felix/pom.xml Thu Dec 17 14:44:40 2009 @@ -5,7 +5,7 @@ 1.2-SNAPSHOT pom - CXF Distributed OSGi Temporary Private Felix Framework Build + Distributed OSGi Temporary Private Felix Framework Build org.apache.cxf.dosgi Modified: cxf/dosgi/trunk/felix/profiles/pom.xml URL: http://svn.apache.org/viewvc/cxf/dosgi/trunk/felix/profiles/pom.xml?rev=891733&r1=891732&r2=891733&view=diff ============================================================================== --- cxf/dosgi/trunk/felix/profiles/pom.xml (original) +++ cxf/dosgi/trunk/felix/profiles/pom.xml Thu Dec 17 14:44:40 2009 @@ -22,7 +22,7 @@ org.apache.cxf.dosgi cxf-dosgi-ri-felix-profiles jar - CXF Distributed OSGi Felix Profiles + Distributed OSGi Felix Profiles 1.2-SNAPSHOT Modified: cxf/dosgi/trunk/felix/shell.tui/pom.xml URL: http://svn.apache.org/viewvc/cxf/dosgi/trunk/felix/shell.tui/pom.xml?rev=891733&r1=891732&r2=891733&view=diff ============================================================================== --- cxf/dosgi/trunk/felix/shell.tui/pom.xml (original) +++ cxf/dosgi/trunk/felix/shell.tui/pom.xml Thu Dec 17 14:44:40 2009 @@ -20,7 +20,7 @@ 4.0.0 bundle - CXF Distributed OSGi Temporary Private Apache Felix Shell TUI Build + Distributed OSGi Temporary Private Apache Felix Shell TUI Build A simple textual user interface for Felix' shell service. org.apache.cxf.dosgi felix-shell-extension