Return-Path: Delivered-To: apmail-incubator-ivy-user-archive@locus.apache.org Received: (qmail 69340 invoked from network); 23 Oct 2007 08:59:38 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 23 Oct 2007 08:59:38 -0000 Received: (qmail 2074 invoked by uid 500); 23 Oct 2007 08:59:25 -0000 Delivered-To: apmail-incubator-ivy-user-archive@incubator.apache.org Received: (qmail 2053 invoked by uid 500); 23 Oct 2007 08:59:25 -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 Delivered-To: moderator for ivy-user@incubator.apache.org Received: (qmail 96326 invoked by uid 99); 23 Oct 2007 07:46:10 -0000 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 ekta.29june@gmail.com designates 66.249.82.232 as permitted sender) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:mime-version:content-type; bh=iVaJiRa0ftcdUcez6CG6jAFZ1RlSQPyaG3yJharKwcA=; b=eOTcqMFp20JWJYEcBs/Wt4nq60+jq9DOvf5LIihITDYhi0GQN54KY4JlaFpjmDDea68UfHoaMN2FDNQ+3Bq1kkYjatw8QBMmcHl92ltNTmGo2qpWMVWYlDiQUi2lEnaqHCNQGnJkO1TfMboSl36oEodphquqYlEAzGmA8qffgNo= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:mime-version:content-type; b=rLj8VoWb7/viWutawZD+PxAsDx9oSyrRuNxLJNhOImki1kBlxcB/DMIktbLsKHEK09ciCTWK0Kzu76JgVRvlYqRMiw1dIJCRX/nFgPy/64T4S7g5q9OYiyYBp89+Tav7muVIrQbjksKZfNIK1OMGzUgBpgNKnEnSMt3prfcN1OI= Message-ID: <51d408b50710230045w5d0a02dfp9e431dd48df2b411@mail.gmail.com> Date: Tue, 23 Oct 2007 13:15:53 +0530 From: "ekta goel" To: grydholt@gmail.com Subject: ivy:cachepath is not bound Cc: ivy-user@incubator.apache.org MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_28452_14398943.1193125553281" X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_28452_14398943.1193125553281 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Thanks jacob, for your reply to query "content is not allowed in prolog". Thanks Jan, for your reply. That problem is fixed, as when we download build.xml from site(quick startup). "-" tags and blank spaces are there, that gives the problem. But now I am trapped in another problem, when I run that build.xml, I got problem " the prefix "ivy" for the element "ivy:cachepath" is not bound.". and build get failed. Please help me. Thanks in advance BUILD.XML: We are now ready to execute our simple program with its dependency on commons-lang. Let's go! package example; import org.apache.commons.lang.WordUtils; public class Hello { public static void main(String[] args) { String message = "hello ivy !"; System.out.println("standard message : " + message); System.out.println("capitalized by " + WordUtils.class.getName() + " : " + WordUtils.capitalizeFully (message)); } } ------=_Part_28452_14398943.1193125553281--