Return-Path: Delivered-To: apmail-geronimo-dev-archive@www.apache.org Received: (qmail 43398 invoked from network); 10 Oct 2005 15:46:32 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 10 Oct 2005 15:46:31 -0000 Received: (qmail 50141 invoked by uid 500); 10 Oct 2005 15:46:28 -0000 Delivered-To: apmail-geronimo-dev-archive@geronimo.apache.org Received: (qmail 50095 invoked by uid 500); 10 Oct 2005 15:46:27 -0000 Mailing-List: contact dev-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 dev@geronimo.apache.org Received: (qmail 50084 invoked by uid 99); 10 Oct 2005 15:46:27 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 10 Oct 2005 08:46:27 -0700 X-ASF-Spam-Status: No, hits=0.4 required=10.0 tests=DNS_FROM_RFC_ABUSE X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [216.136.173.32] (HELO smtp012.mail.yahoo.com) (216.136.173.32) by apache.org (qpsmtpd/0.29) with SMTP; Mon, 10 Oct 2005 08:46:29 -0700 Received: (qmail 66451 invoked from network); 10 Oct 2005 15:46:04 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Received:Mime-Version:In-Reply-To:References:Content-Type:Message-Id:Content-Transfer-Encoding:From:Subject:Date:To:X-Mailer; b=aASPrEhTin51Ngprzep43LhLzSh2E/zA2eHeIrl81NK/iJau3J/AMqljSAkiQ59OBsCgG8EK0/506yO4YjWYEMrQla/S364BG2GtvN1UPUwOPA7q4l1VpYACipW+vri8wvK6GjuloHU+ddqCPQjZCaLx0Q3OFn6LZGpif7ziIO0= ; Received: from unknown (HELO ?192.168.1.5?) (david?jencks@66.93.38.137 with plain) by smtp012.mail.yahoo.com with SMTP; 10 Oct 2005 15:46:03 -0000 Mime-Version: 1.0 (Apple Message framework v622) In-Reply-To: <20051010152647.33931.qmail@minotaur.apache.org> References: <20051010152647.33931.qmail@minotaur.apache.org> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <6934dbb922472ae9a8ff0dabc7f7912c@yahoo.com> Content-Transfer-Encoding: 7bit From: David Jencks Subject: Re: svn commit: r312666 - in /geronimo/devtools/trunk/modules/eclipse-plugin/plugins/org.apache.geronimo.deployment.model: maven.xml project.properties Date: Mon, 10 Oct 2005 08:45:58 -0700 To: dev@geronimo.apache.org X-Mailer: Apple Mail (2.622) X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N What does this jelly code do? If it updates older plans to the newer schemas, should we work a bit to make the upgrading code in SchemaConversionUtils more accessible to outside tools? thanks david jencks On Oct 10, 2005, at 8:26 AM, sppatel@apache.org wrote: > Author: sppatel > Date: Mon Oct 10 08:26:43 2005 > New Revision: 312666 > > URL: http://svn.apache.org/viewcvs?rev=312666&view=rev > Log: > fix for schema validation errors > > Modified: > > geronimo/devtools/trunk/modules/eclipse-plugin/plugins/ > org.apache.geronimo.deployment.model/maven.xml > > geronimo/devtools/trunk/modules/eclipse-plugin/plugins/ > org.apache.geronimo.deployment.model/project.properties > > Modified: > geronimo/devtools/trunk/modules/eclipse-plugin/plugins/ > org.apache.geronimo.deployment.model/maven.xml > URL: > http://svn.apache.org/viewcvs/geronimo/devtools/trunk/modules/eclipse- > plugin/plugins/org.apache.geronimo.deployment.model/maven.xml? > rev=312666&r1=312665&r2=312666&view=diff > ======================================================================= > ======= > --- > geronimo/devtools/trunk/modules/eclipse-plugin/plugins/ > org.apache.geronimo.deployment.model/maven.xml (original) > +++ > geronimo/devtools/trunk/modules/eclipse-plugin/plugins/ > org.apache.geronimo.deployment.model/maven.xml Mon Oct 10 08:26:43 > 2005 > @@ -53,7 +53,10 @@ > match="schemaLocation="(.*/)(.*xsd)" > replace="schemaLocation="\2" byline="true"/> > test="${schema.getName().equals('geronimo-connector-1.0.xsd')}"> > replace="\1${patch}"/> > - > + > + test="${schema.getName().equals('geronimo-security-1.0.xsd')}"> > + replace="\1${patch2}"/> > + > > > > > Modified: > geronimo/devtools/trunk/modules/eclipse-plugin/plugins/ > org.apache.geronimo.deployment.model/project.properties > URL: > http://svn.apache.org/viewcvs/geronimo/devtools/trunk/modules/eclipse- > plugin/plugins/org.apache.geronimo.deployment.model/ > project.properties?rev=312666&r1=312665&r2=312666&view=diff > ======================================================================= > ======= > --- > geronimo/devtools/trunk/modules/eclipse-plugin/plugins/ > org.apache.geronimo.deployment.model/project.properties (original) > +++ > geronimo/devtools/trunk/modules/eclipse-plugin/plugins/ > org.apache.geronimo.deployment.model/project.properties Mon Oct 10 > 08:26:43 2005 > @@ -1,2 +1,3 @@ > maven.jar.manifest=META-INF/MANIFEST.MF > -patch= schemaLocation="xml.xsd"/> > \ No newline at end of file > +patch= schemaLocation="xml.xsd"/> > +patch2= schemaLocation="xml.xsd"/> > \ No newline at end of file > >