Return-Path: Delivered-To: apmail-incubator-abdera-dev-archive@locus.apache.org Received: (qmail 75994 invoked from network); 26 May 2007 22:15:41 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 26 May 2007 22:15:41 -0000 Received: (qmail 20553 invoked by uid 500); 26 May 2007 22:15:46 -0000 Delivered-To: apmail-incubator-abdera-dev-archive@incubator.apache.org Received: (qmail 20532 invoked by uid 500); 26 May 2007 22:15:46 -0000 Mailing-List: contact abdera-dev-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: abdera-dev@incubator.apache.org Delivered-To: mailing list abdera-dev@incubator.apache.org Received: (qmail 20523 invoked by uid 99); 26 May 2007 22:15:45 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 26 May 2007 15:15:45 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of adam@clownsinmycoffee.net designates 69.89.17.198 as permitted sender) Received: from [69.89.17.198] (HELO outbound-mail-28.bluehost.com) (69.89.17.198) by apache.org (qpsmtpd/0.29) with SMTP; Sat, 26 May 2007 15:15:39 -0700 Received: (qmail 19270 invoked by uid 0); 26 May 2007 22:15:16 -0000 Received: from unknown (HELO box142.bluehost.com) (69.89.22.142) by mailproxy2.bluehost.com with SMTP; 26 May 2007 22:15:16 -0000 Received: from h-68-166-19-193.atlngahp.dynamic.covad.net ([68.166.19.193] helo=maccers.local) by box142.bluehost.com with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1Hs4Xb-00056I-KG for abdera-dev@incubator.apache.org; Sat, 26 May 2007 16:15:16 -0600 Message-ID: <4658B16F.3080603@clownsinmycoffee.net> Date: Sat, 26 May 2007 18:15:11 -0400 From: Adam Constabaris User-Agent: Thunderbird 2.0.0.0 (Macintosh/20070326) MIME-Version: 1.0 To: abdera-dev@incubator.apache.org Subject: Re: Dependency updates References: <46560E1A.6000100@gmail.com> <7edfeeef0705251153y207e56cfxd8f071b06f2db053@mail.gmail.com> <4657A8A1.1010502@gmail.com> In-Reply-To: <4657A8A1.1010502@gmail.com> Content-Type: multipart/mixed; boundary="------------030108010603050005030909" X-Identified-User: {702:box142.bluehost.com:clownsin:clownsinmycoffee.net} {sentby:smtp auth 68.166.19.193 authed with adam@clownsinmycoffee.net} X-Virus-Checked: Checked by ClamAV on apache.org --------------030108010603050005030909 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit James M Snell wrote: > I've updated a number of dependencies. The ant build is working fine. We > need one of our mavenites to update the maven build to match. > > - James > A somewhat flawed patch for the POM files is attached. The tests complete successfully, and a cheap smoke test fetching a service document from a server running an older snapshot produced expected results. There's one minor roadblock and one question, and I made an unrequested change. The unrequested change is that instead of using the hardcoded version everywhere, I substituted ${parent.version} and ${project.version}. It's a bit pedantic, since it doesn't save much work when changing versions (each sub-project still needs to know the parent's version #; I believe maven 2.1 may address this ...) If that seems pointless/foolish, I can back that part out and re-post. Now for the roadblock: xmlsec 1.4.1 is not currently available in the main maven repo; it appears there's no ASF maven repo the xmlsec folks might be using to point at, so the POM still references 1.3.0. The question is why woodstox 3.1.1, while 3.2.1 is available? AC --------------030108010603050005030909 Content-Type: text/plain; x-mac-type="0"; x-mac-creator="0"; name="poms.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="poms.patch" Index: core/pom.xml =================================================================== --- core/pom.xml (revision 541937) +++ core/pom.xml (working copy) @@ -28,7 +28,7 @@ abdera-core jar Abdera Core - 0.3.0-incubating-SNAPSHOT + ${parent.version} Atom Specification Implementation Core 2006 http://incubator.apache.org/abdera Index: pom.xml =================================================================== --- pom.xml (revision 541937) +++ pom.xml (working copy) @@ -198,7 +198,7 @@ commons-httpclient commons-httpclient - 3.0 + 3.1-rc1 compile @@ -212,14 +212,14 @@ org.apache.ws.commons.axiom axiom-api - 1.2.1 + 1.2.4 compile org.apache.ws.commons.axiom axiom-impl - 1.2.1 + 1.2.4 compile @@ -246,7 +246,7 @@ woodstox wstx-asl - 2.0.5 + 3.1.1 runtime @@ -260,14 +260,14 @@ jaxen jaxen - 1.1-beta-7 + 1.1.1 compile xml-security xmlsec - 1.3.0 + 1.3.0 compile Index: parser/pom.xml =================================================================== --- parser/pom.xml (revision 541937) +++ parser/pom.xml (working copy) @@ -28,7 +28,7 @@ abdera-parser jar Abdera Parser - 0.3.0-incubating-SNAPSHOT + ${parent.version} Atom Specification Implementation Parser 2006 http://incubator.apache.org/abdera @@ -45,7 +45,7 @@ org.apache.abdera abdera-core - 0.3.0-incubating-SNAPSHOT + ${parent.version} compile Index: extensions/pom.xml =================================================================== --- extensions/pom.xml (revision 541937) +++ extensions/pom.xml (working copy) @@ -28,7 +28,7 @@ abdera-extensions jar Abdera Extensions - 0.3.0-incubating-SNAPSHOT + ${parent.version} Atom Specification Extensions 2006 http://incubator.apache.org/abdera @@ -41,25 +41,25 @@ org.apache.abdera abdera-core - 0.3.0-incubating-SNAPSHOT + ${project.version} compile org.apache.abdera abdera-parser - 0.3.0-incubating-SNAPSHOT + ${project.version} compile org.apache.abdera abdera-protocol - 0.3.0-incubating-SNAPSHOT + ${project.version} compile org.apache.abdera abdera-client - 0.3.0-incubating-SNAPSHOT + ${project.version} compile Index: protocol/pom.xml =================================================================== --- protocol/pom.xml (revision 541937) +++ protocol/pom.xml (working copy) @@ -28,7 +28,7 @@ abdera-protocol jar Abdera Protocol Core - 0.3.0-incubating-SNAPSHOT + ${parent.version} Atom Publishing Protocol Implementation Core 2006 http://incubator.apache.org/abdera @@ -41,7 +41,7 @@ org.apache.abdera abdera-core - 0.3.0-incubating-SNAPSHOT + ${project.version} compile Index: server/pom.xml =================================================================== --- server/pom.xml (revision 541937) +++ server/pom.xml (working copy) @@ -28,7 +28,7 @@ abdera-server jar Abdera Server - 0.3.0-incubating-SNAPSHOT + ${parent.version} Atom Publishing Protocol Specification Server-Side Implementation 2006 http://incubator.apache.org/abdera @@ -45,19 +45,19 @@ org.apache.abdera abdera-core - 0.3.0-incubating-SNAPSHOT + ${project.version} compile org.apache.abdera abdera-parser - 0.3.0-incubating-SNAPSHOT + ${project.version} compile org.apache.abdera abdera-protocol - 0.3.0-incubating-SNAPSHOT + ${project.version} compile Index: security/pom.xml =================================================================== --- security/pom.xml (revision 541937) +++ security/pom.xml (working copy) @@ -28,7 +28,7 @@ abdera-security jar Abdera Security - 0.3.0-incubating-SNAPSHOT + ${parent.version} Atom Specification Implementation Security 2006 http://incubator.apache.org/abdera @@ -45,25 +45,25 @@ org.apache.abdera abdera-core - 0.3.0-incubating-SNAPSHOT + ${project.version} compile org.apache.abdera abdera-parser - 0.3.0-incubating-SNAPSHOT + ${project.version} compile org.apache.abdera abdera-client - 0.3.0-incubating-SNAPSHOT + ${project.version} compile org.apache.abdera abdera-protocol - 0.3.0-incubating-SNAPSHOT + ${project.version} compile Index: client/pom.xml =================================================================== --- client/pom.xml (revision 541937) +++ client/pom.xml (working copy) @@ -28,7 +28,7 @@ abdera-client jar Abdera Client - 0.3.0-incubating-SNAPSHOT + ${parent.version} Atom Publishing Protocol Client Implementation 2006 http://incubator.apache.org/abdera @@ -45,19 +45,19 @@ org.apache.abdera abdera-core - 0.3.0-incubating-SNAPSHOT + ${project.version} compile org.apache.abdera abdera-parser - 0.3.0-incubating-SNAPSHOT + ${project.version} compile org.apache.abdera abdera-protocol - 0.3.0-incubating-SNAPSHOT + ${project.version} compile Index: examples/pom.xml =================================================================== --- examples/pom.xml (revision 541937) +++ examples/pom.xml (working copy) @@ -28,7 +28,7 @@ abdera-examples jar Abdera Examples - 0.3.0-incubating-SNAPSHOT + ${parent.version} Atom Specification Implementation Examples 2006 http://incubator.apache.org/abdera @@ -45,43 +45,43 @@ org.apache.abdera abdera-core - 0.3.0-incubating-SNAPSHOT + ${project.version} compile org.apache.abdera abdera-parser - 0.3.0-incubating-SNAPSHOT + ${project.version} compile org.apache.abdera abdera-protocol - 0.3.0-incubating-SNAPSHOT + ${project.version} compile org.apache.abdera abdera-client - 0.3.0-incubating-SNAPSHOT + ${project.version} compile org.apache.abdera abdera-server - 0.3.0-incubating-SNAPSHOT + ${project.version} compile org.apache.abdera abdera-extensions - 0.3.0-incubating-SNAPSHOT + ${project.version} compile org.apache.abdera abdera-security - 0.3.0-incubating-SNAPSHOT + ${project.version} compile --------------030108010603050005030909--