Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 64492 invoked from network); 27 Aug 2007 02:43:58 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 27 Aug 2007 02:43:58 -0000 Received: (qmail 80873 invoked by uid 500); 27 Aug 2007 02:43:47 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 80799 invoked by uid 500); 27 Aug 2007 02:43:47 -0000 Mailing-List: contact axis-dev-help@ws.apache.org; run by ezmlm Precedence: bulk Reply-To: axis-dev@ws.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list axis-dev@ws.apache.org Received: (qmail 80788 invoked by uid 99); 27 Aug 2007 02:43:47 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 26 Aug 2007 19:43:47 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of sandakith@gmail.com designates 64.233.182.185 as permitted sender) Received: from [64.233.182.185] (HELO nf-out-0910.google.com) (64.233.182.185) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 27 Aug 2007 02:43:39 +0000 Received: by nf-out-0910.google.com with SMTP id e27so967235nfd for ; Sun, 26 Aug 2007 19:43:18 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type; b=IOjzVeJ5Ej6vnE9pZ9cpBdO3zTVd2dsd+dcDz7xj/TO1yBnja5rsqAnuqTA9QbpMf0C7WuDRRxVyCCHxa4at4wW2/SjxDyJMBcowZClDReGnZeXTTd8gCUv8GIYUKyKtV3pU3uHG06Hrz0bzn1M3P0rX9X66Fqek8rCb8saZaOE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type; b=Z5bvhwZ/6B/S+VxK1kfjMeFX/aqro1BjA73aIN8LkfasJ5TSpjfVT8c0z8jgMczTTR+lprHg3OeGZBbm9U2ilZQEnFduflmj2ZzNLObY65cSBASdQsAdOl+omzu3PtugNRYUwXECk15Y3KOoLPKb96PjJrLa8LrZyS/FRFiYjoU= Received: by 10.78.172.20 with SMTP id u20mr3482454hue.1188182597877; Sun, 26 Aug 2007 19:43:17 -0700 (PDT) Received: by 10.78.100.18 with HTTP; Sun, 26 Aug 2007 19:43:17 -0700 (PDT) Message-ID: <9efb15600708261943x70847f79rce7c3dccdb7d210b@mail.gmail.com> Date: Mon, 27 Aug 2007 08:13:17 +0530 From: "Lahiru Sandakith" To: "axis-dev@ws.apache.org" Subject: Maven2 SNAPSHOT dependencies included with date suffix MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_23429_32773714.1188182597856" X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_23429_32773714.1188182597856 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi devs, When we have SNAPSHOT dependencies for a particular module, maven2 on line build include them in to the module dependencies with a date suffix. What we need is when we do nightly builds maven2 should rename that to SNAPSHOT and include that in to the nightly builds. For example In order for the eclipse plugins nightly builds to work we have to have the exact 3rd party library name to elcipse framework to load it through the plugin.xml. (There is no question about releases , since we are not going with SNAPSHOTs) Is there a way that we can have renamed SNAPSHOT included in the builds. (AFAIK maven2 get the latest from the repos and rename that to SNAPSHOT in local) For example We have the neethi dependency in the eclipse plugin pom.xml as org.apache.neethi neethi ${neethi.version} the version coming from the parent which is SNAPSHOT. Problem comes when there is a new neethi nightly build available in the repos compare to my local machine, the build include it as neethi-20070825.224622-550.jar not as neethi-SNAPSHOT.jar with the on-line build. -- Thanks Lahiru Sandakith http://sandakith.wordpress.com/ GPG Key Fingerprint : 8CD8 68E0 4CBC 75CB 25BC 1AB1 FE5E 7464 1F01 9A0F ------=_Part_23429_32773714.1188182597856 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi devs,
When we have SNAPSHOT dependencies for a particular module, maven2 on line build include them in to the module dependencies with a date suffix. What we need  is when we do nightly builds maven2 should rename that to SNAPSHOT and include that in to the nightly builds. For example In order for the eclipse plugins nightly builds to work we have to have the exact 3rd party library name to elcipse framework to load it through the plugin.xml. (There is no question about releases , since we are not going with SNAPSHOTs)
Is there a way that we can have renamed SNAPSHOT included in the builds. (AFAIK maven2 get the latest from the repos and rename that to SNAPSHOT in local)
For example We have the neethi dependency in the eclipse plugin pom.xml as
                <dependency>
                        <groupId>org.apache.neethi</groupId>
                        <artifactId>neethi</artifactId>
                        <version>${neethi.version}</version>
                </dependency>
the version coming from the parent which is SNAPSHOT. Problem comes when there is a new neethi nightly build available in the repos compare to my local machine, the build include it as neethi-20070825.224622-550.jar not as neethi-SNAPSHOT.jar with the on-line build.
--
Thanks
Lahiru Sandakith

http://sandakith.wordpress.com/
GPG Key Fingerprint : 8CD8 68E0 4CBC 75CB 25BC  1AB1 FE5E 7464 1F01 9A0F ------=_Part_23429_32773714.1188182597856--