RE: Way to simplify this task?

2009-02-20 Thread Martin Gainty
Scott change to HTH Martin __ Disclaimer and confidentiality note Everything in this e-mail and any attachments relates to the official business of Sender. This transmission is of a confidential nature and Sender does not endorse distribution

Re: Way to simplify this task?

2009-02-20 Thread sfloess
Yeah...been a while since I did this... I think, it is literally assuming a file entitled *.jar below :( What does your taskdef look like for Find Bugs? I use something like this: http://findbugs.sourceforge.net"; description = "Needed to use FindBugs.">

RE: Way to simplify this task?

2009-02-20 Thread Rick Genter
"*" is generally a shell-construct. I think only and its relatives know how to expand *. -- Rick Genter Principal Software Engineer Silverlink Communications

Way to simplify this task?

2009-02-20 Thread dave.alvarado
Hi, Perhaps this is more appropriate for the FindBugs forum, but I've found good answers here. I'm using Ant 1.6 with FindBugs 1.3.7. I want to tell FindBugs to include all the JARS within a certain directory for its classpath, but this isn't working ...

Re: Is there a login "wait for password" target/task?

2009-02-20 Thread Scott Stark
> Hello Scott, FWIF maybe this link can help: http://www.jera.com/tools/anttasks/. 8) David. Thanks David, but not quite what I'm looking for -- sorry I wasn't clear. I do want the script to pass the login and password (without being prompted), to an application that prompts and waits for input.

Re: Is there a login "wait for password" target/task?

2009-02-20 Thread david
Hello Scott, FWIF maybe this link can help: http://www.jera.com/tools/anttasks/. 8) David. Scott Stark wrote .. > > I noticed the task automates a remote telnet session, using > and to indicate strings to wait for and specify text to send. > > Is there any more generic task that can do this?

RE: AW: AW: AW: scite as3 + ant + flex sdk

2009-02-20 Thread 3akycka
... I did try that like I saw on the internet, but nothing more appends : -- View this message in context: http://www.nabble.com/scite-as3-%2B-ant-%2B-flex-sdk-tp21921594p22128896.html Sent from the Ant - Users mailing list archive at Nabble.com.

RE: AW: AW: AW: scite as3 + ant + flex sdk

2009-02-20 Thread 3akycka
Thank you but I don't see how to do this, do I have to put spawn="true" as a parameter of my build file. How to test the mxmlc script runs standalone ? You may will think that I should learn Ant before use it, but compile actionscript files from Scite is my only need of Ant and I don't get time t

RE: AW: AW: AW: scite as3 + ant + flex sdk

2009-02-20 Thread Martin Gainty
you can always exec the mxmlc task (specifically the class flex.ant.MxmlcTask) with spawn="true" in other words make sure the mxmlc script runs standalone before committing as a task in your build environment HTH Martin __ Disclaimer and confidentia

Re: AW: AW: AW: scite as3 + ant + flex sdk

2009-02-20 Thread 3akycka
Hello, I just find the time to look again at all of that :-), I did open the .jar and effectively the 3 lines are on it : mxmlc=flex.ant.MxmlcTask compc=flex.ant.CompcTask html-wrapper=flex.ant.HtmlWrapperTask I made a new try with your path indications and now I don't get anymore the errors

Re: Is there a login "wait for password" target/task?

2009-02-20 Thread Brian Pontarelli
I noticed the task automates a remote telnet session, using and to indicate strings to wait for and specify text to send. Is there any more generic task that can do this? I'm trying to access a remote db system that prompts for a password. (Actually it's Perforce, but I didn't see any

Is there a login "wait for password" target/task?

2009-02-20 Thread Scott Stark
I noticed the task automates a remote telnet session, using and to indicate strings to wait for and specify text to send. Is there any more generic task that can do this? I'm trying to access a remote db system that prompts for a password. (Actually it's Perforce, but I didn't see any perforce

ant axis-admin multiple wsdd files

2009-02-20 Thread Poodump
I'm trying to use ant to generate my server-config.wsdd file. What I'm looking to do is provide multiple Deploy.wsdd files to this task, but I can't figure out a compact way of doing this. Here's what I have Our source is arranged like so: com/endpoints/users/Users-Deploy.wsd

RE: how to run two exec tasks within the same command shell

2009-02-20 Thread Shawn Castrianni
Out of curiosity, is it even possible to fix ANT to prevent this workaround? ANT is Java based, so it is a general Java question, "Can Java launch a single process and then feed commands to that same process so that subsequent commands are affected by the prior commands?" If it isn't even poss

RE: I want to send (explicit) quiet output to the screen and (automatic) verbose output to a log file

2009-02-20 Thread Martin Gainty
commons-logging is what you're looking for ..doc is available at http://commons.apache.org/logging/ Download it and read the doc on how to deploy at http://commons.apache.org/logging/commons-logging-1.1.1/guide.html#Creating%20a%20Log%20Implementation edit the simplelogging.properties configura

RE: javac error

2009-02-20 Thread Martin Gainty
Yang- is a placeholder you need to supply a REAL datatype such as or or Regards Martin __ Disclaimer and confidentiality note Everything in this e-mail and any attachments relates to the official business of Sender. This transmission is of a c

AW: I want to send (explicit) quiet output to the screen and (automatic) verbose output to a log file

2009-02-20 Thread Jan.Materne
>I am writing an installation program using Ant. Currently I am running my >program in quiet mode. This way, I can send user information requests >[input] to the screen as well as [echo] specific information that I want the >user to see. I can also send other debugging and logging information to >v

I want to send (explicit) quiet output to the screen and (automatic) verbose output to a log file

2009-02-20 Thread Dylan Farre
Hi I am writing an installation program using Ant. Currently I am running my program in quiet mode. This way, I can send user information requests [input] to the screen as well as [echo] specific information that I want the user to see. I can also send other debugging and logging information to var

javac error

2009-02-20 Thread michelleyang
error information: [javac] /home/print/cur_branch/regular/Core/src/com/netease/print/dao/impl/cache/AbstractDaoCacheImpl.java:22: 无法确定 T 的类型参数;对于上限为 T,java.lang.Object 的类型变量 T,不存在唯一最大实例 [javac] return RequestScopeCacheHolder.getCache().getObject(this.getKeyPrefix(), subKey); "无法确定 T 的

AW: how to run two exec tasks within the same command shell

2009-02-20 Thread Jan.Materne
>the two executable file, one is called "setENV.cmd", the other is called "doThings.exe". >in the windows command console, the "setENV.cmd" is used to setup the >environment, and it must be run first, then the "doThings.exe" can be run. >or not, "doThings.exe" can't work. the manual operation work

Re: Ant version for linux

2009-02-20 Thread Stefan Bodewig
On 2009-02-19, meher03 wrote: > Qs: Will Ant 1.7.1 binary downloaded from the Apache ant website work on > linux box. as a blanket question, the blanket answer is YES. Ant is way more dependent on the Java VM that is executing it than the operation system and there are many JVMs available for L

how to run two exec tasks within the same command shell

2009-02-20 Thread zbc
the two executable file, one is called "setENV.cmd", the other is called "doThings.exe". in the windows command console, the "setENV.cmd" is used to setup the environment, and it must be run first, then the "doThings.exe" can be run. or not, "doThings.exe" can't work. the manual operation works w