Return-Path: Delivered-To: apmail-ant-user-archive@www.apache.org Received: (qmail 66591 invoked from network); 2 Nov 2006 17:18:33 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 2 Nov 2006 17:18:33 -0000 Received: (qmail 98246 invoked by uid 500); 2 Nov 2006 17:18:36 -0000 Delivered-To: apmail-ant-user-archive@ant.apache.org Received: (qmail 98196 invoked by uid 500); 2 Nov 2006 17:18:35 -0000 Mailing-List: contact user-help@ant.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Help: List-Post: List-Id: "Ant Users List" Reply-To: "Ant Users List" Delivered-To: mailing list user@ant.apache.org Received: (qmail 98185 invoked by uid 99); 2 Nov 2006 17:18:35 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 02 Nov 2006 09:18:35 -0800 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 peter.kitt.reilly@gmail.com designates 66.249.92.175 as permitted sender) Received: from [66.249.92.175] (HELO ug-out-1314.google.com) (66.249.92.175) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 02 Nov 2006 09:18:10 -0800 Received: by ug-out-1314.google.com with SMTP id m3so200500ugc for ; Thu, 02 Nov 2006 09:17:29 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=LQPCNLXYR4y5xk/n9oxJvtfgpKeNcVvFgWnb5yTQ6uU4VWyWKiobjki3/R4l1jYA+IIFqcixOKNHanEHByReUhqVPU8YuKF4kNGV75O4X3Uw3HfQ/ZtiwQITtHgFM8Iog/Ax09YB8yxISbeTXRIO+q1JwFVVqXAULyHTXVNRfKI= Received: by 10.82.172.15 with SMTP id u15mr200430bue.1162487844273; Thu, 02 Nov 2006 09:17:24 -0800 (PST) Received: by 10.82.152.11 with HTTP; Thu, 2 Nov 2006 09:17:23 -0800 (PST) Message-ID: Date: Thu, 2 Nov 2006 17:17:24 +0000 From: "Peter Reilly" To: "Ant Users List" Subject: Re: How do I use ejbDeploy outside of RAD In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: X-Virus-Checked: Checked by ClamAV on apache.org I did a quick google and found a lot of hits of people asking this question, but very few on how to do it. running rad ant tasks from the cli looks like fun ;-) I found this: http://www-128.ibm.com/developerworks/websphere/library/techarticles/0505_weisz/0505_weisz.html They use their own ant launcher (com.ibm.etools.j2ee.ant.RunAnt) and their own ant.bat file : runAnt.bat. Peter On 11/2/06, Branden Kolb wrote: > Well, maybe I don't understand quite yet. I added the path to the > antj2ee.jar to my system classpath variable. opened a new DOS window and > tried my script again. I still get the error: > > Could not create task or type of type: ejbDeploy > > What am I missing? > > Branden Kolb > > > > Ok, I think I am beginning to understand. I may not have provided > enough > > information. I call a batch file like the following. Should I just add > > > the correct jar to the folder listed as the ANT_HOME folder? Or do I > just > > add it to my windows classpath? Thanks for the help! > > > > echo %~dp0 > > > > cd %~dp0 > > REM subst j: %~dp0..\3rdParty > > > > SET JAVA_HOME=C:\Program Files\Java\jdk1.5.0_08\lib > > set ANT_HOME=%~dp03rdParty\ant-1.6.2 > > echo ANT_HOME > > setlocal > > call %ANT_HOME%\bin\ant -verbose -buildfile Build.xml -l .\logfile.txt > %* > > endlocal > > > > > > > > > > Branden Kolb > > > > > > > > > Branden Kolb wrote: > > > > I have recently written a build script using Ant for one of our > > projects > > > > that is run from within RAD. One of the targets uses the > > > task > > > > in the following manner: > > > > > > > > > IgnoreErrors="true" > > > > /> > > > > > > > > I want to be able to run the Ant script from a DOS window. However, > > > when > > > > I do, and it gets to the ejbDeploy task, I get the following: > > > > > > > > BUILD FAILED > > > > C:Build\Build.xml:37: The following error occurred while executing > > this > > > > line: > > > > C:Build\Build.xml:26: The following error occurred while executing > > this > > > > line: > > > > C:\workspace\build_standalone.xml:344: Could not create task or type > > > of > > > > type: ejbDeploy. > > > > > > > > Can someone tell me if it's possible to use the ejbDeploy task this > > way, > > > > and, if so, how would I do it? > > > > > > > > On a similar note, is there anyway to use the > > > > > > task in the same way ( or > > > > ) outside of > RAD? > > > > > > > > > > I dont know what RAD is, and assume that it is a rational/eclipse > > > platform. Yes? > > > > > > If so, these are custom tasks that come with the tool. You need to > find > > > where they come from, add the JAR and dependencies to Ant's classpath > > > outside the IDE. As long as they dont have hard coded assumptions > about > > > in-IDE use, they should then work. > > > > > > -steve > > > > > > --------------------------------------------------------------------- > > > To unsubscribe, e-mail: user-unsubscribe@ant.apache.org > > > For additional commands, e-mail: user-help@ant.apache.org > > > > > --------------------------------------------------------------------- To unsubscribe, e-mail: user-unsubscribe@ant.apache.org For additional commands, e-mail: user-help@ant.apache.org