Re: Classpath problem / getting StarTeam tasks to work...

2008-03-12 Thread Ken Turner
I use StarTeam successfully simply by using the following -lib parameter when I call Ant: -lib "C:\Program Files\Borland\StarTeam SDK 2005\Lib" -- View this message in context: http://www.nabble.com/Classpath-problem---getting-StarTeam-tasks-to-work...-tp15499112p16001862.html Sent from the Ant

Re: classpath problem using the java task

2006-07-05 Thread James Fuller
to access env vars (http://ant.apache.org/manual/index.html) and then echo out. though its best to leave nothing to chance and completely control either via a batch script that runs Ant or definition in ant build file things like PATH, etc... gl, Jim Fuller ---

Re: classpath problem using the java task

2006-07-05 Thread James Abley
ant -v or ant -d for more verbose output as to what ANT is doing. Jeffrey E Care wrote: Check out your property definition for appserver-home. Jeffrey E. (Jeff) Care [EMAIL PROTECTED]

Re: classpath problem using the java task

2006-07-04 Thread Jeffrey E Care
Check out your property definition for appserver-home. Jeffrey E. (Jeff) Care [EMAIL PROTECTED] IBM WebSphere Application Server Development WAS Pyxis Lead Release Engineer Douglas Dunn <

Re: classpath problem using the java task

2006-07-04 Thread Dominique Devienne
From http://java.sun.com/j2se/1.4.2/docs/tooldocs/windows/java.html#options -jar Execute a program encapsulated in a JAR file. The first argument is the name of a JAR file instead of a startup class name. In order for this option to work, the manifest of the JAR file must contain a line of the f

Re: Classpath problem on a unix system

2005-10-26 Thread Juergen Hermann
On Wed, 26 Oct 2005 18:04:14 +0200, [EMAIL PROTECTED] wrote: >Any clue? >Any help would be really welcome. Try to find out how the shell wrapper (ant) on your system builds up the classpath. On SuSE f.x., ant has an --execdebug option to show the classpath used to launch Ant. And also there,

Re: classpath problem

2005-09-05 Thread luke
Hi. 05Sep2005 @ 10:11 Petar Tahchiev thusly spake > > Probably you have to enlose the tag in your tag like > this: > > > BLAH BLAH > > Thanks! Kind regards. Luke. -- ._.. .| .| |.|/.|_ . .|__.|_|.|\.|_ . :61 421 276 282: ---

RE: classpath problem

2005-09-05 Thread RADEMAKERS Tanguy
you closed your "javac" tag (xml empty tag syntax with a closing "/"), so your classpath isn't being passed. /t >-Original Message- >From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] >Sent: Saturday, September 03, 2005 9:36 AM >To: user@ant.apache.org >Subject: clas

Re: classpath problem

2005-09-05 Thread Petar Tahchiev
On 03/09/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > Hi. > > I've searched for a solution on this list, faq and google. > It's probably very simple. I am a beginner with ant. > > I want to compile some files that are part of a webapp. > So they need the servlet-api.jar file. > > When I

RE: Classpath problem with Checkstyle?

2004-10-28 Thread Dominique Devienne
> From: Roberto Juarez [mailto:[EMAIL PROTECTED] > I have in structed Checkstyle to allow the @throws tag for undeclared > exceptions in the checkstyle.xml configuration file This is not Ant-related. Just add a corresponding throws XyxException declaration to the method when you have a @throws