Has this been reported in Bugzilla?
-Original Message-
From: BOUSQUET Jeremie [mailto:[EMAIL PROTECTED]
Sent: Wednesday, September 07, 2005 1:29 PM
To: Ant Users List
Subject: [ANT 1.6.5] performance issue
Hello,
I had some performance issues using task, and I found following post fr
Watch the lineseparator when copying text files between platforms. Some
apps are sensitive to the lineseparator.
-Original Message-
From: RADEMAKERS Tanguy [mailto:[EMAIL PROTECTED]
Sent: Wednesday, September 14, 2005 12:10 PM
To: Ant Users List
Subject: RE: moving from windows to unix: f
Since ant properties are immutable, all you have to do is set BAR the
value of FOO.
mailto:[EMAIL PROTECTED]
Sent: Monday, September 26, 2005 12:32 AM
To: Ant Users List
Subject: if then
I want to do something quite simple, but with Ant it seems really
difficult.
I want to check a property BAR
Sometimes the commandline arguments are a bit tricky. Try the following.
-Original Message-
From: Jakob Fix [mailto:[EMAIL PROTECTED]
Sent: Monday, September 26, 2005 4:36 AM
To: Ant Users List
Subject: Re: problem with apply task
Hello
It works on XP.
--- rant.bat
setlocal
set foo=bar
call ant
echo on
Endlocal
--- build.xml
env.foo is ${env.foo}
--- output
C:\Projects\My Tools>rant
C:\Projects\My Tools>setlocal
C:\Projects\My Tools>set foo=bar
C:\Projects\My Tools>call ant
Buildfile: build.xml
[echo] env.fo
Run cmd.exe and pass the bat as an arg.
-Original Message-
From: Uri Zeituni [mailto:[EMAIL PROTECTED]
Sent: Wednesday, September 28, 2005 11:29 AM
To: user@ant.apache.org
Subject: Executing DOS batch files
Hi All,
Is there any ANT tasks for running DOS batch files, executing DOS
comman
Any hints on how to debug the sshexec task "auth fail"? It was working a
couple of weeks ago, but it is now failing for some unknown reason. Of
course, "nothing has changed" on my machine. I can connect using ssh
from cygwin.
Thanks
Here's a short test project I'm using to debug.
---
Can I get some help for the problem below?
-Original Message-
From: Dick, Brian E.
Sent: Friday, October 07, 2005 11:24 AM
To: Ant Users List
Subject: Sshexec: Auth fail
Any hints on how to debug the sshexec task "auth fail"? It was working a
couple of weeks ago, but it is n
empting
to connect via Ant. The error suggests you are using the wrong username
or password. Perhaps the password expired? What happens on the command
line in cygwin?
-Rob A
> -Original Message-
> From: Dick, Brian E. [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, October 11, 2005 8:25
The patch worked. Here's the URL to the patch. This should be added to
the code base.
http://marc.theaimsgroup.com/?l=ant-dev&m=111959408515300&w=2
-Original Message-----
From: Dick, Brian E.
Sent: Tuesday, October 11, 2005 2:15 PM
To: Ant Users List
Subject: RE: Sshexec: A
package that implements the SSH tasks, and it has
already been applied to Ant's HEAD.
Thanks,
Matt
--- "Dick, Brian E." <[EMAIL PROTECTED]> wrote:
> The patch worked. Here's the URL to the patch. This
> should be added to
> the code base.
>
>
http://marc.thea
?
-Original Message-
From: Dan Finkelstein [mailto:[EMAIL PROTECTED]
Sent: Sunday, November 06, 2005 2:06 AM
To: user@ant.apache.org
Subject: How to parse a directory path?
Hi --
I have a number of directories on which I wish to run the same ant build
file. I implemented something u
I don't see it in the docs, but is there a way to have shexec do its
thing quietly? I'm capturing configuration info from a bunch of remote
machines, and I don't want to see the output spew to the console.
Later,
BEDick
No need for any utility.
for /f %i in ("ant.bat") do @echo %~$path:i
-Original Message-
From: Bill Rich [mailto:[EMAIL PROTECTED]
Sent: Thursday, December 01, 2005 7:24 PM
To: 'Ant Users List'
Subject: RE: ant not recognizing command line argument
Attached is a little utility I have ha
I once used gcc for this purpose. You can just run the pre-processor and
save the output.
I also have used m4. It's a bit more powerful than gcc and is language
agnostic.
I have since bagged both of those and use ant's filterchains. I use the
ExpandProperties and ReplaceTokens filterchains instea
For Windows I use rcmd.exe to remotely run Winzip. For Unix I use shexec
to remotely run zip.
-Original Message-
From: Karthik [mailto:[EMAIL PROTECTED]
Sent: Tuesday, January 17, 2006 6:27 AM
To: user@ant.apache.org
Subject: Auto task need to take backup before deployemnt
Hi form
You could also try cscript.exe. That's the actual command processor for
vbs and other Windows scripting languages.
-Original Message-
From: Clifton Craig [mailto:[EMAIL PROTECTED]
Sent: Monday, January 30, 2006 8:52 AM
To: Ant Users List
Subject: Re: Problems with exec task
Rhino,
Here
Actually, wscript.exe is usually associated with Windows scripting
languages. I suggested cscript.exe because it is more appropriate for
console usage. Wscript.exe displays debug and echo messages in dialog
boxes. Cscript.exe displays messages as text.
BTW, this is a Windows thing and doesn't have
The exec task is always problematic because you are leaving the ant/java
world and entering into an alien space. Not only are there variations
between OSes, but individual commands on the same OS behave differently.
No matter how many times I use it, I end up having to try different
combinations of
The concat task can do that now.
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Tuesday, January 31, 2006 1:49 AM
To: user@ant.apache.org
Subject: AW: echo with html
>> Does anybody have a task that will let you echo to a file while
>> including html in the
-- hello there.vbs
strArg = ""
strDelim = ""
for each objItem in WScript.Arguments
strArg = strArg & strDelim & objItem
strDelim = " "
next
WScript.echo "hello there, " & strArg
-- cscript.xml
-- example run
C:\temp\ant -f cscri
I use WSH mainly for WMI scripting. It's the best way to get info from
remote Windows machines.
-Original Message-
From: Steve Loughran [mailto:[EMAIL PROTECTED]
Sent: Tuesday, January 31, 2006 12:17 PM
To: Ant Users List
Subject: Re: Problems with exec task
Dick, Brian E.
You could also use the script task to load the class and print the
value.
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Friday, February 10, 2006 11:11 AM
To: Ant Users List
Subject: Antwort: Re: Displaying the value in a Java class?
Hello,
i think, what yo
Use the following command to determine which ant.bat you are executing.
for /f %i in ("ant.bat") do echo %~$PATH:i
-Original Message-
From: Joe Moore [mailto:[EMAIL PROTECTED]
Sent: Monday, April 03, 2006 8:24 AM
To: Ant Users List
Subject: Re: AW: ANT_HOME is set incorrectly or ant coul
Does you machine have multiple CPU's and disks? Parallel tasks on a
single CPU/disk machine can only improve performance if there is
significant CPU/IO overlap. A compiler is CPU and disk intensive with
little CPU/IO overlap. If you don't have parallel hardware, parallel
software won't improve perf
I have used to speed up a bunch of database server
operations. The work was really being done remotely and the client was
just waiting for status.
-Original Message-
From: Dominique Devienne [mailto:[EMAIL PROTECTED]
Sent: Thursday, April 06, 2006 9:37 AM
To: Ant Users List
Subject: Re:
I need to pass values from a script into a target, but the immutability
of properties is getting in the way. I can't use the antcall task in my
script, because I eventually need to return a value from the target to
the script too. Here's a simplified test script.
NS ip address change on twenty remote
hosts (window and unix).
Solution:
-Original Message-
From: Steve Loughran [mailto:[EMAIL PROTECTED]
Sent: Thursday, May 18, 2006 8:57 AM
To: Ant Users List
Subject: Re: Problem with script task and properties
Dick, Br
#x27;s what it takes, so be it.
Thanks for your help.
-Original Message-
From: Steve Loughran [mailto:[EMAIL PROTECTED]
Sent: Thursday, May 18, 2006 10:25 AM
To: Ant Users List
Subject: Re: Problem with script task and properties
Dick, Brian E. wrote:
> This is a simplified script
e:/C:/apache-ant-1.6.2/lib/ant-contrib.jar!/net/sf/antcontrib/
>> antlib.xml
>> with URI =
>> jar:file:/C:/apache-ant-1.6.2/lib/ant-contrib.jar!/net/sf/antcontrib/
>> antlib.xml
>> Build sequence for target `test' is [test]
>> Complete build sequence i
I have the FTP task all over my build files, and now I need to use SFTP.
I don't see an SFTP task. I only see sftp as a parameter for the SCP
task, but SCP has a completely different syntax from FTP and would
require a lot of re-coding.
What's the easiest way to get from FTP to SFTP?
Later,
BEDic
Thanks for the clarification.
-Original Message-
From: Anderson, Rob (Global Trade) [mailto:[EMAIL PROTECTED]
Sent: Tuesday, February 27, 2007 6:39 PM
To: Ant Users List
Subject: RE: SFTP task
> -Original Message-
> From: Dick, Brian E. [mailto:[EMAIL PROTECTED]
I have a file of files that I want filter as I copy. I want the
filterreader to look and work similar to a fileset. Here is an example
of what I would like to do. I thought I might be able to write a
scriptfilter to test the concept, but I can't find an Ant class that
will test a filename for membe
I have a file of files that I need to load into a property and filter
according to expressions similar to the "include" and "exclude" elements
of a patternset.
For example, assume I have a file, fof.dat, containing the following.
/export/home/myaccount/myapp/bin/pgm1
/export/home/myaccount/myapp/
n Ant?
-Original Message-
From: Dick, Brian E.
Sent: Thursday, October 25, 2007 4:12 PM
To: Ant Users List
Subject: How do I filter a file of files
I have a file of files that I need to load into a property and filter
according to expressions similar to the "include" and "exclude"
nual/OptionalTasks/scp.html>.
You will need jsch.jar 0.1.29 or later for to work.
On 10/31/07, Dick, Brian E. <[EMAIL PROTECTED]> wrote:
> Let me state my problem, rather than my idea of a solution. Maybe that
> will pique your interest.
>
> I have a macrodef in my current build th
Steve Loughran wrote:
> we always welcome improvements to the existing tasks; scp could do
with
> directory creation, listing and dependency checking.
>
> historically, the troublespot with scp has always been testing, but
now
> that vmware is free for windows+unix, the cost of getting an scp
se
Hi,
The ftp protocol is no longer allowed in our computing environment,
because ftp uses clear text usernames/passwords. So, I have to rewrite
our ant scripts to use the scp task rather than the ftp task. However,
there are two attributes of the ftp task that I cannot seem to replicate
with scp. F
100 Salem Street
Smithfield, RI 02917
401.292.6875
brian.d...@fmr.com
> _
> From: Dick, Brian E.
> Sent: Thursday, July 01, 2010 12:19 AM
> To: Ant Users List
> Subject: File list from remote server
>
> Hi,
>
splay to the
console and the other to filter to a temp file instead
of a property. The other option is to "pollute" your
properties by using a discrete property name including
@{f} for each list value.
-Matt
--- "Dick, Brian E." <[EMAIL PROTECTED]> wrote:
> This is my
I can't connect to ftp.mozilla.org. Can anyone else connect?
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Never mind. I found a mirror site that was up.
-Original Message-
From: Dick, Brian E.
Sent: Friday, August 20, 2004 3:28 PM
To: Ant Users List
Subject: [WARNING: This message originated from outside of Fidelity]
Cannot download mozilla javascript
I can't connect to ftp.mozill
It looks like the vssget task is doing a "CD" command before it does a "ss Get". I
wonder why it doesn't use the "-GL" switch to specify the local path?
-Original Message-
From: Matteo Giacometti [mailto:[EMAIL PROTECTED]
Sent: Friday, August 27, 2004 10:42 AM
To: 'Ant Users List'
Subjec
I see your point and I agree. Bad idea. Hey Matt, put on the brakes! :)
-Original Message-
From: Dominique Devienne [mailto:[EMAIL PROTECTED]
Sent: Wednesday, September 01, 2004 3:00 PM
To: Ant Users List
Subject: RE: PropertySet use in macro
> From: Dick, Brian E. [mailto:[EM
I am using Ant to build Sybase and Oracle databases.
-Original Message-
From: Peter Savage [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 28, 2004 8:29 PM
To: [EMAIL PROTECTED]
Subject: ANT capabilities question
Hello,
Everything I've read about Ant is Java specific. Is it only for
...
Should be
...
-Original Message-
From: Shoop, Michael R. [mailto:[EMAIL PROTECTED]
Sent: Friday, October 08, 2004 9:08 AM
To: '[EMAIL PROTECTED]'
Subject: Ant not accepting arguments
Hi,
I'm fairly new with ant and am having a problem with comm
Title: Message
Since the ant command
on Windows is a batch file, you have to "call" it when you use it from another
batch file. Change you batch file to
call ant -f
cond3.xml
-Original Message-From: Rhino
[mailto:[EMAIL PROTECTED] Sent: Tuesday, October 19, 2004 10:44
A good of usage of presetdefs that I saw (where?) defined a task
differently depending on platform (windows vs. unix). Then all
references to the preset task were platform independent.
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 21, 2004 2:
Is there a way to specify a default for an element in a macrodef? Here
is a simplified example.
The second invocation above should effectively work like
Look at
http://homepage.ntlworld.com/wayne_grant/ant.html
-Original Message-
From: Erskine, Chris [mailto:[EMAIL PROTECTED]
Sent: Friday, October 22, 2004 12:26 PM
To: Ant Users List
Subject: RE: Improving Tasks
My first guess would be if this could be done using Swing with a popup.
Th
Re-factor to remove the cross dependency. Put the interdependent classes
in a third jar C, so that jars A and B are independent of each other.
Then you would have the following.
C is independent
A needs C
B needs C
-Original Message-
From: sanjeev chhabra [mailto:[EMAIL PROTECTED]
Sent:
You may also be able to add the users using the "net user /add" command.
Run "net help user" to see the doc for this command.
-Original Message-
From: Matt Benson [mailto:[EMAIL PROTECTED]
Sent: Thursday, December 02, 2004 3:42 PM
To: Ant Users List; icon911
Subject: Re: Windows 2003 user
I use ant to build Oracle and Sybase databases. Works great.
If your build tools support a command line interface and set a return
code on success/failure, then ant will do the job. Most of your early
ant development will consist of writing a library of macrodef tasks that
wrap the exec and apply
The property attribute is specified wrong. Try property="servrestart".
-Original Message-
From: Rebhan, Gilbert [mailto:[EMAIL PROTECTED]
Sent: Thursday, December 09, 2004 8:08 AM
To: Ant Users List
Subject: RE: txtfile with various lines
Hi, just tried your suggestion, but
le with various lines
Oh boy :-> direct hit.
Of course property=servrestart
Shame on me ! - Thx a lot.
Too much "Biobrain-Multitasking" here ...
Out of memory ;-)
Gilbert
-Original Message-
From: Dick, Brian E. [mailto:[EMAIL PROTECTED]
Sent: Thursday, December 09
No, but if you hum a few bars I can sing along. :)
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Wednesday, December 15, 2004 2:06 AM
To: [EMAIL PROTECTED]
Subject: AW: Comparing Files on Two Servers
Hhmmm - do you know the modified selector?
Jan
> -Ur
Try basedir=".."
-Original Message-
From: IndianAtTech [mailto:[EMAIL PROTECTED]
Sent: Friday, December 17, 2004 12:48 AM
To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
Subject: Question Title: ANT -->> Directory access problem
Hi All,
I know the following is valid syntax and also works fin
Just because you use exec doesn't mean you are os-dependent. If the same
exec-utable is available on all os's, then you maintain os independence.
I use executables in my builds (i.e. m4, isql, sqlplus) and the same
build files work on Windows, Solaris and RH.
-Original Message-
From: Sadaf
Have fun!
-
I am planning the deployment of Ant 1.7alpha to our project team.
Currently, we are using Ant 1.5. We are also using Checkstyle 2.4.
Are there any compatibility issues with Checkstyle 2.4 and Ant 1.7alpha?
Should we upgrade to a later version of Checkstyle?
Later,
Brian Dick
I use AntDoc and I like it. However, it hasn't been kept up to date and
doesn't support V1.62 features such as import and macrodef. The author
doesn't have time to keep it going and has asked for support from the
open source community. I don't know what response he has received.
-Original Mess
Does anyone else get an icky feeling when copying extension libraries
into the lib directory? Isn't that why the java runtime added the ext
directory?
Later,
BEDick
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional comma
, 2005 12:33 PM
To: Ant Users List
Subject: Re: Ant should have an ext directory
Dick,
--- "Dick, Brian E." <[EMAIL PROTECTED]> wrote:
> Does anyone else get an icky feeling when copying
> extension libraries
> into the lib directory? Isn't that why the java
> runtim
Jan 2005, Dick, Brian E. wrote:
> Understood, but I want to create a department-wide ant distribution
that
> is augmented with common extension libraries. None of the options you
> list make this particularly clean and easy to manage.
You could use Ant to set it up. ;-) In other wor
s out to everyone in your department. Not as nice as if ANT
supported this directly, but it might help.
[EMAIL PROTECTED] wrote:
> "Dick, Brian E." <[EMAIL PROTECTED]> writes:
>
> > Understood, but I want to create a department-wide ant distribution
that
>
n ext directory in a central location,
then use a build process to merge it with a base ANT install; then copy
the results out to everyone in your department. Not as nice as if ANT
supported this directly, but it might help.
[EMAIL PROTECTED] wrote:
> "Dick, Brian E." <[EMAIL P
ve our ClearCase views mounted on a reserved drive letter
so pointing scripts to the correct place(s) was easy.
<= Alex =>
>-Original Message-
>From: Dick, Brian E. [mailto:[EMAIL PROTECTED]
>Sent: Monday, January 03, 2005 7:42 PM
>To: Ant Users List
>Subject: RE: Ant
m
> and we also have our ClearCase views mounted on a reserved drive
letter
> so pointing scripts to the correct place(s) was easy.
>
> <= Alex =>
>
> >-Original Message-
> >From: Dick, Brian E. [mailto:[EMAIL PROTECTED]
> >Sent: Monday, January 03, 2005
Windows has dll hell. Java has jar war.
If you press ctrl-c while running ant, the antrc_post.bat file does not run. In
this case, any environment changes made by antrc_pre.bat will not be undone.
Yuk.
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Wednesday
ry 05, 2005 10:56 AM
To: Ant Users List
Subject: RE: Ant should have an ext directory
--- "Dick, Brian E." <[EMAIL PROTECTED]> wrote:
> Windows has dll hell. Java has jar war.
>
> If you press ctrl-c while running ant, the
> antrc_post.bat file does not run. In this cas
There is a java.version property. Maybe you can use that instead of
checking the PATH.
-Original Message-
From: Scott Simpson [mailto:[EMAIL PROTECTED]
Sent: Thursday, January 06, 2005 6:42 PM
To: user@ant.apache.org
Subject: Want to build under multiple JDKs
We have some Java code that
Sorry, misinterpreted your post.
-Original Message-
From: Scott Simpson [mailto:[EMAIL PROTECTED]
Sent: Thursday, January 06, 2005 7:21 PM
To: user@ant.apache.org
Subject: Re: Want to build under multiple JDKs
Dick, Brian E. wrote:
> There is a java.version property. Maybe you can
If you use OS pipes, you will appreciate filterchains.
-Original Message-
From: Nat Gross [mailto:[EMAIL PROTECTED]
Sent: Thursday, January 13, 2005 4:41 PM
To: Ant Users List
Subject: Re: Cleaning a text file with tons of extra CRLF's
filterchains? I will need to catch up on that topic
This is more of a java question, but I would appreciate your help.
I have a java application that I start from ant. This program
continuously monitors our database for cpu utilization, connection
attempts, and other general health statistics.
Currently, when I want to stop the application for mai
it stops
Jan
> -Ursprüngliche Nachricht-
> Von: Dick, Brian E. [mailto:[EMAIL PROTECTED]
> Gesendet am: Mittwoch, 19. Januar 2005 14:18
> An: Ant Users List
> Betreff: Stopping an ant target
>
> This is more of a java question, but I would appreciate your help.
>
> I hav
I need to remove the extension from a file name. The basename task
almost works when specifying the suffix attribute. However, I don't know
the value of the suffix.
Does anyone know how I can remove the extension (suffix) from a file
name?
Later,
BEDick
--
PROTECTED]
Sent: Wednesday, January 19, 2005 10:43 AM
To: user@ant.apache.org
Subject: AW: Remove extension from a file name
using regexps
(.*)\..* --> \1
Jan
> -Ursprüngliche Nachricht-
> Von: Dick, Brian E. [mailto:[EMAIL PROTECTED]
> Gesendet am: Mittwoch, 19. Januar 200
do it with a
regexpmapper.
HTH,
Matt
--- "Dick, Brian E." <[EMAIL PROTECTED]> wrote:
> With which task? I already have the file name with
> extension in a property. I need the file name sans
> extension in a new property.
>
> BTW, I found the propertyregex task in a
...there has to be a better way to do this.
I have a file that contains lines like the following.
src1 trg1
src2
src3 trg3
I need to parse the file and send the two values in each line to another
program. When there is only one value on the line, I have to send the
value twice. Here's the target
4:09 PM
To: Ant Users List
Subject: Re: Parsing file. It works but...
--- "Dick, Brian E." <[EMAIL PROTECTED]> wrote:
[SNIP]
> I need to parse the file and send the two values in
> each line to another
> program. When there is only one value on the line, I
> have to s
Was the message supposed to have an attachment?
-Original Message-
From: Matt Benson [mailto:[EMAIL PROTECTED]
Sent: Friday, February 11, 2005 5:17 PM
To: Ant Users List
Subject: RE: Parsing file. It works but...
--- "Dick, Brian E." <[EMAIL PROTECTED]> wrote:
>
bject: RE: Parsing file. It works but...
--- Matt Benson <[EMAIL PROTECTED]> wrote:
> --- "Dick, Brian E." <[EMAIL PROTECTED]> wrote:
>
> > That's a bit better.
> >
> > Is there a better way to iterate the lines in the
> > file? The task
I believe the Nant project has a utility to do something like that.
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Monday, March 07, 2005 9:35 AM
To: user@ant.apache.org
Subject: VSS Project/Solution to Ant build tool
Does anyone know of a tool for converting
The "exit" command terminates the command shell and not the bat file.
You exit a bat file by "goto :eof".
-Original Message-
From: John Cortell [mailto:[EMAIL PROTECTED]
Sent: Friday, March 11, 2005 9:34 AM
To: Ant Users List
Subject: RE: launching Ant from a perl script
I had tried tha
ecified, sets
ERRORLEVEL that number. If quitting CMD.EXE, sets the
process
exit code with that number.
Sten Rosendahl
> -Original Message-----
> From: Dick, Brian E. [mailto:[EMAIL PROTECTED]
> Sent: Friday, March 11, 2005 4:35 PM
> To: Ant Users List
>
nstead of
> CMD.EXE. If executed from outside a batch script, it
> will quit CMD.EXE
>
> exitCodespecifies a numeric number. if /B is specified, sets
> ERRORLEVEL that number. If quitting CMD.EXE, sets the
>process
> exit
At the beginning of your sqlplus script you should add something similar
to the following.
whenever oserror exit failure rollback
whenever sqlerror exit failure rollback
These lines will cause sqlplus to set the exit code. If you don't want
to hardcode these lines in all of your sqlplus
cript file.
This is what im doing:
-Oprindelig meddelelse-
Fra: Dick, Brian E. [mailto:[EMAIL PROTECTED]
Sendt: 15. marts 2005 14:49
Til: Ant Users List
Emne: RE: Handling Exec errorcodes
At the beginning of your sqlplus script you should add something similar
to the following.
I need to copy a directory of files to a remote machine. I want to
maintain the same relative directory structure on the remote machine as
defined by the local machine. Only the top level directories are
different between the two machines.
The following works, but is it the best way to accomplish
There is a little overlap between FilterSet and FilterChain types, but
otherwise the two types are quite different.
For example the following two copy tasks are equivalent.
The FilterSet type does token rep
I'm getting an exception from the following build. The echoproperties
task doesn't like the nested propertyset. What am I doing wrong?
Sorry if this is duplicate post.
I'm getting an exception from the following build. The echoproperties
task doesn't like the nested propertyset. What am I doing wrong?
nt Users List
Subject: Re: Problem with nested property sets
Try running in debug mode (-debug) and providing the stack trace.
--
Jeffrey E. Care ([EMAIL PROTECTED])
WebSphere Build SWAT Team Lead
WebSphere Build Tooling Lead (Project Mantis)
https://w3.opensource.ibm.com/projects/mantis
"Di
oproperties] foobar.4=4
BUILD SUCCESSFUL
Total time: 0 seconds
and that's what you expected, I guess
Success!
Mylene
On 5/18/05, Dick, Brian E. <[EMAIL PROTECTED]> wrote:
> Here is the output from "ant -debug".
>
> Total time: 0 seconds
>
> -Orig
this today.
-Matt
--- "Dick, Brian E." <[EMAIL PROTECTED]> wrote:
> I have two property sets, one prefixed with "foo"
> and one prefixed with
> "bar". I want to union these two property sets and
> change the "foo"
> prefix to "
How can I delete a directory only when it is empty? I have tried many
combinations of include/exclude with the delete task, but cannot find
anything that works in all cases.
Later,
BEDick
t include "includeemptydirs" in your delete task, like the
following example?
Jian
On 6/1/05, Dick, Brian E. <[EMAIL PROTECTED]> wrote:
> How can I delete a directory only when it is empty? I have tried many
> combinations of include/exclude with the delete task, but cannot find
>
Works. Cool. Thanks.
-Original Message-
From: Matt Benson [mailto:[EMAIL PROTECTED]
Sent: Wednesday, June 01, 2005 11:11 AM
To: Ant Users List
Subject: RE: Delete dir if empty
--- "Dick, Brian E." <[EMAIL PROTECTED]> wrote:
> Nope. That deletes files. I don't w
I get the following error when trying the code from your reference.
BUILD FAILED
C:\build.xml:77: ReferenceError: "self" is not defined.
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Monday, June 06, 2005 4:37 AM
To: user@ant.apache.org
Subject: AW: built-in
I need to execute two commands with sshexec.
How can I get sshexec to fail when the first command fails?
Later,
BEDick
1 - 100 of 123 matches
Mail list logo