Return-Path: Delivered-To: apmail-geronimo-scm-archive@www.apache.org Received: (qmail 94276 invoked from network); 9 Jan 2009 16:54:11 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 9 Jan 2009 16:54:11 -0000 Received: (qmail 61343 invoked by uid 500); 9 Jan 2009 16:54:11 -0000 Delivered-To: apmail-geronimo-scm-archive@geronimo.apache.org Received: (qmail 61295 invoked by uid 500); 9 Jan 2009 16:54:11 -0000 Mailing-List: contact scm-help@geronimo.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: dev@geronimo.apache.org List-Id: Delivered-To: mailing list scm@geronimo.apache.org Received: (qmail 61286 invoked by uid 99); 9 Jan 2009 16:54:11 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Jan 2009 08:54:11 -0800 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; Fri, 09 Jan 2009 16:54:10 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 44C8523888EB; Fri, 9 Jan 2009 08:53:50 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r733082 - in /geronimo/server/trunk/plugins/clustering: geronimo-farm/pom.xml geronimo-farm/src/main/java/org/apache/geronimo/farm/config/BasicExtendedJMXConnectorInfoEditor.java plugin-farm-member/src/main/history/dependencies.xml Date: Fri, 09 Jan 2009 16:53:50 -0000 To: scm@geronimo.apache.org From: dwoods@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090109165350.44C8523888EB@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: dwoods Date: Fri Jan 9 08:53:49 2009 New Revision: 733082 URL: http://svn.apache.org/viewvc?rev=733082&view=rev Log: GERONIMO-4498 ClassNotFoundException: BasicExtendedJMXConnectorInfoEditor throwned when farming geronimo using Deployment. Applied patch from Shawn Jiang. Added: geronimo/server/trunk/plugins/clustering/geronimo-farm/src/main/java/org/apache/geronimo/farm/config/BasicExtendedJMXConnectorInfoEditor.java (with props) Modified: geronimo/server/trunk/plugins/clustering/geronimo-farm/pom.xml geronimo/server/trunk/plugins/clustering/plugin-farm-member/src/main/history/dependencies.xml Modified: geronimo/server/trunk/plugins/clustering/geronimo-farm/pom.xml URL: http://svn.apache.org/viewvc/geronimo/server/trunk/plugins/clustering/geronimo-farm/pom.xml?rev=733082&r1=733081&r2=733082&view=diff ============================================================================== --- geronimo/server/trunk/plugins/clustering/geronimo-farm/pom.xml (original) +++ geronimo/server/trunk/plugins/clustering/geronimo-farm/pom.xml Fri Jan 9 08:53:49 2009 @@ -39,6 +39,12 @@ geronimo-jmx-remoting ${version} + + + org.apache.geronimo.framework + geronimo-service-builder + ${version} + Added: geronimo/server/trunk/plugins/clustering/geronimo-farm/src/main/java/org/apache/geronimo/farm/config/BasicExtendedJMXConnectorInfoEditor.java URL: http://svn.apache.org/viewvc/geronimo/server/trunk/plugins/clustering/geronimo-farm/src/main/java/org/apache/geronimo/farm/config/BasicExtendedJMXConnectorInfoEditor.java?rev=733082&view=auto ============================================================================== --- geronimo/server/trunk/plugins/clustering/geronimo-farm/src/main/java/org/apache/geronimo/farm/config/BasicExtendedJMXConnectorInfoEditor.java (added) +++ geronimo/server/trunk/plugins/clustering/geronimo-farm/src/main/java/org/apache/geronimo/farm/config/BasicExtendedJMXConnectorInfoEditor.java Fri Jan 9 08:53:49 2009 @@ -0,0 +1,34 @@ +/* + * 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. + */ + +package org.apache.geronimo.farm.config; + +import org.apache.geronimo.deployment.service.JavaBeanXmlAttributeEditor; + +/** + * + * @version $Rev:$ $Date:$ + */ +public class BasicExtendedJMXConnectorInfoEditor extends JavaBeanXmlAttributeEditor { + + public BasicExtendedJMXConnectorInfoEditor() { + super(BasicExtendedJMXConnectorInfo.class); + } + +} Propchange: geronimo/server/trunk/plugins/clustering/geronimo-farm/src/main/java/org/apache/geronimo/farm/config/BasicExtendedJMXConnectorInfoEditor.java ------------------------------------------------------------------------------ svn:eol-style = native Modified: geronimo/server/trunk/plugins/clustering/plugin-farm-member/src/main/history/dependencies.xml URL: http://svn.apache.org/viewvc/geronimo/server/trunk/plugins/clustering/plugin-farm-member/src/main/history/dependencies.xml?rev=733082&r1=733081&r2=733082&view=diff ============================================================================== --- geronimo/server/trunk/plugins/clustering/plugin-farm-member/src/main/history/dependencies.xml (original) +++ geronimo/server/trunk/plugins/clustering/plugin-farm-member/src/main/history/dependencies.xml Fri Jan 9 08:53:49 2009 @@ -7,6 +7,11 @@ car + org.apache.geronimo.framework + plugin + car + + org.apache.geronimo.modules geronimo-farm jar @@ -18,7 +23,22 @@ org.apache.geronimo.framework - plugin - car + geronimo-service-builder + jar + + + org.apache.geronimo.framework + geronimo-deployment + jar + + + org.apache.xmlbeans + xmlbeans + jar + + + xml-resolver + xml-resolver + jar