Return-Path: Delivered-To: apmail-incubator-ivy-user-archive@locus.apache.org Received: (qmail 32540 invoked from network); 4 Jul 2007 08:51:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 4 Jul 2007 08:51:44 -0000 Received: (qmail 37344 invoked by uid 500); 4 Jul 2007 08:51:46 -0000 Delivered-To: apmail-incubator-ivy-user-archive@incubator.apache.org Received: (qmail 37326 invoked by uid 500); 4 Jul 2007 08:51:46 -0000 Mailing-List: contact ivy-user-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: ivy-user@incubator.apache.org Delivered-To: mailing list ivy-user@incubator.apache.org Received: (qmail 37317 invoked by uid 99); 4 Jul 2007 08:51:46 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 04 Jul 2007 01:51:46 -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 hezjing@gmail.com designates 209.85.132.245 as permitted sender) Received: from [209.85.132.245] (HELO an-out-0708.google.com) (209.85.132.245) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 04 Jul 2007 01:51:43 -0700 Received: by an-out-0708.google.com with SMTP id b33so394014ana for ; Wed, 04 Jul 2007 01:51:22 -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:content-transfer-encoding:content-disposition; b=naEBekxmJBAD19K3Y6MTX/cCtPKnEaW+GlFbs1yL2/+7IHaefrByfUW+52jcTwWg9SQrUjm68vQIOmJjney+h0GaxW7/4J60q7YL1se5C4sujnjHUYol+rewpgAsD2ZZCaPV4JaIOGPqmULA8UEWIa3n77BVXsW9yV60QbPa3xU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=oSFu98Yn1Td4vIXM6dcNsFfilTJlSrTtt6Op3L6BHRvoip/yxIHvC6pczemK1ukAGffZqKMtSCj/AKr/wkmcTupwinFaBG/8lNqo4UUZe94l8Bccg6ymAiaobcCthqtNA2Xf+AOBJzLOdEgOmn5MbJM/16zvTpn4FqeZ6kYBSis= Received: by 10.142.254.8 with SMTP id b8mr500651wfi.1183539081910; Wed, 04 Jul 2007 01:51:21 -0700 (PDT) Received: by 10.142.252.13 with HTTP; Wed, 4 Jul 2007 01:51:21 -0700 (PDT) Message-ID: Date: Wed, 4 Jul 2007 16:51:21 +0800 From: hezjing To: ivy-users Subject: Create compile-time and runtime classpath MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Checked: Checked by ClamAV on apache.org Hi! With Ivy, we use to construct the classpath. I think this will build a classpath containing all the dependencies in the cache (correct?). How can we create, say a compile-time classpath and runtime classpath from the Ivy cache? Example, if there are A.jar; B.jar; C.jar; D.jar; E.jar in the cache, how do I create a compile-time classpath which contains A.jar + B.jar, and a runtime classpath of A.jar + B.jar + E.jar? Before Ivy, we used to create two path-like structures shown below, -- Hez