Re: Refresh the navigation view from build.xml

2005-09-07 Thread Jeffrey E Care
What navigation view are you talking about? -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer WebSphere Build Tooling Lead (Project Mantis) Ana Gaspar Martínez <[EMAIL PROTECTED]> wrote on 09/07/2005 11:37:02 AM: > Is there any mode of refresh the navigation view

Re: Find - is there parallel ant task?

2005-09-13 Thread Jeffrey E Care
hacker response to a poorly-worded inquiry. http://www.catb.org/~esr/faqs/smart-questions.html -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer WebSphere Build Tooling Lead (Project Mantis)

Re: incremental builds

2005-09-15 Thread Jeffrey E Care
Many tasks already support incremental builds: javac, copy, move, zip, native2ascii, etc. Plus you can always use dependset & uptodate to munge it for tasks that don't support it. JEC -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer WebSphere Build Tooling Lead

Re: Fileset search file

2005-09-15 Thread Jeffrey E Care
filesystem, etc. To use your example, you might get back either: File1 File2 File3 File4 File5 or: File2 File1 File3 File5 File4 -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer WebSphere Build Tooling Lead (Project Mantis) João Augusto Charnet <[EM

Re: Concat With Newline

2005-09-15 Thread Jeffrey E Care
${line.separator} -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer WebSphere Build Tooling Lead (Project Mantis) "Urciolo, Kevin" <[EMAIL PROTECTED]> wrote on 09/15/2005 01:13:39 PM: > I am using concat to write out configuration files. The text is &g

Re: Newbie question

2005-09-15 Thread Jeffrey E Care
ere to signal that some of the optional tasks will not work due to some of their required libraries not being available on the classpath. -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer WebSphere Build Tooling Lead (Project Mantis) "Sylvain Perchaud" <[EMAIL P

Re: Fileset search file

2005-09-15 Thread Jeffrey E Care
I think some of Matt Benson's work on the HEAD (i.e. Ant 1.7) branch for resource collections can do ordering. Unfortunately that won't help you on 1.6 -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer WebSphere Build Tooling Lead (Project Mantis) João Augus

Re: websphere.ant.tasks knowledge

2005-09-22 Thread Jeffrey E Care
http://publib.boulder.ibm.com/infocenter/wasinfo/v5r1//topic/com.ibm.websphere.base.doc/info/aes/ae/rovr_antapi.html -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer WebSphere Build Tooling Lead (Project Mantis) <[EMAIL PROTECTED]> 09/22/2005 09:04 AM Please resp

Re: seamless integration of custom tasks?

2005-09-26 Thread Jeffrey E Care
The closest thing is to use antlibs + namespaces. Autoloading is being debated on the developer list. -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer WebSphere Build Tooling Lead (Project Mantis) "Andrew Ferguson" <[EMAIL PROTECTED]> wrote on 09/26/2

Re: zip into a top directory

2005-09-27 Thread Jeffrey E Care
maybe with zipfileset? or you could just tell your users to "unzip -d" -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer WebSphere Build Tooling Lead (Project Mantis) Amy Roh <[EMAIL PROTECTED]> 09/27/2005 04:52 PM Please respond to "Ant

Re: Executing DOS batch files

2005-09-28 Thread Jeffrey E Care
There is a very clear example in the manual for using to run DOS batch files. http://ant.apache.org/manual/CoreTasks/exec.html -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer WebSphere Build Tooling Lead (Project Mantis) "Uri Zeituni" <[EMAIL PROTECTED]>

Re: Check directory exists

2005-09-30 Thread Jeffrey E Care
just run ; it won't post an error if the directory already exists -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer WebSphere Build Tooling Lead (Project Mantis) João Augusto Charnet <[EMAIL PROTECTED]> 09/30/2005 06:36 PM Please respond to "Ant Use

Re: List (expand) the contents of a patternset to a file

2005-10-02 Thread Jeffrey E Care
+ Implementation left as an exercise for the reader. -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer WebSphere Build Tooling Lead (Project Mantis) sebb <[EMAIL PROTECTED]> wrote on 10/01/2005 10:35:10 PM: > Assume I have the

RE: Help with choosing build property file

2005-10-07 Thread Jeffrey E Care
should work on all platforms; just pick a common environment variable to use. You may need to use a wrapper script around Ant to set this common variable. -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer WebSphere Build Tooling Lead (Project Mantis) "Rakesh

Re: splitting a string

2005-10-10 Thread Jeffrey E Care
I think AntContrib's task could do this. -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer WebSphere Build Tooling Lead (Project Mantis) "Lasher, James L" <[EMAIL PROTECTED]> 10/10/2005 07:43 PM Please respond to "Ant Users List" T

Re: look up property value inside custom condition...

2005-10-13 Thread Jeffrey E Care
IIRC so long as your condition impl. class extends form oata.ProjectComponent you can get a handle to the project. One way to do this would be to extend oata.taskdefs.condition.ConditionBase -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer WebSphere Build Tooling Lead

Re: look up property value inside custom condition...

2005-10-13 Thread Jeffrey E Care
Have you tried implementing the "setProject(oata.Project)" method? One of the committers could say for sure, but I think the introspector will call that method, even if the class in question does not extend from oata.ProjectComponent... JEC -- Jeffrey E. Care ([EMAIL PROTECTED]) We

Re: How can ant detect it is running on a 64 bit machine?

2005-10-13 Thread Jeffrey E Care
Here are a couple of ideas: *use a wrapper script to set a system environment variable, which you can access with *write a custom task that can make the determination in Java code *use

Re: Out of memory running Proguard

2005-10-15 Thread Jeffrey E Care
Google "ANT_OPTS" -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer WebSphere Build Tooling Lead (Project Mantis) Mark McKay <[EMAIL PROTECTED]> wrote on 10/15/2005 08:36:52 AM: > I'm getting OutOfMemoryErrors while running a task that uses the >

Re: More default behavior expected

2005-10-17 Thread Jeffrey E Care
-v is for VERBOSE mode -d is for DEBUG mode -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer WebSphere Build Tooling Lead (Project Mantis) <[EMAIL PROTECTED]> 10/17/2005 09:14 AM Please respond to "Ant Users List" To Ant Users cc Subject More

Re: replaceregexp problem

2005-10-18 Thread Jeffrey E Care
Play around with the @flags & @byline; I think those will be able to solve your problem. -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer WebSphere Build Tooling Lead (Project Mantis) Gilbert Rebhan <[EMAIL PROTECTED]> wrote on 10/18/2005 01:41:02 PM: > Hi, &

Re: Download set of files under a directory on a HTTP server?

2005-10-18 Thread Jeffrey E Care
sn't exist in HTTP. JEC -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer WebSphere Build Tooling Lead (Project Mantis) Rajesh Rajasekaran <[EMAIL PROTECTED]> wrote on 10/18/2005 04:06:09 PM: > How do I download a set of files under a directory on a HTTP se

Re: webpshere application server 6 , ant and versions of ant

2005-10-24 Thread Jeffrey E Care
bm.websphere.base.doc/info/aes/ae/rovr_antcmd.html -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer WebSphere Build Tooling Lead (Project Mantis)

Re: webpshere application server 6 , ant and versions of ant

2005-10-25 Thread Jeffrey E Care
unlike > weblogic renames their version of ant.bat :) I will pass your approval onto the developers who are responsible for our bundling of Ant. -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer WebSphere Build Tooling Lead (Project Mantis)

RE: webpshere application server 6 , ant and versions of ant

2005-10-25 Thread Jeffrey E Care
uot;ws_ant -version". Assuming that I'm correct then the answer would be no: Ant 1.5.4 can't run build files that are written to work with 1.6.5, thus the version of Ant bundled with WAS 6.0 can't either. -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer WebSphere Build Tooling Lead (Project Mantis)

Re: Ant or Subant question

2005-10-26 Thread Jeffrey E Care
You can provide a fileset to subant and it will basically run against every file in the fileset. -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer WebSphere Build Tooling Lead (Project Mantis) Petar Tahchiev <[EMAIL PROTECTED]> wrote on 10/26/2005 02:10:54 AM: &

RE: webpshere application server 6 , ant and versions of ant

2005-10-26 Thread Jeffrey E Care
extremely hard to maintain B/C, but it still might happen. I also feel obligated to point out that I'm pretty sure that this would not be a supported configuration... Good luck! -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer WebSphere Build Tooling Lead (Project Mantis)

RE: CVS - get files by their label

2005-10-26 Thread Jeffrey E Care
You should also consider the time difference between yourself and the country were a lot of subscribers to the list live. (Not to imply that only Americans/Canadians can answer questions of course.) A little more patience next time, please :-) JEC -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSp

Re: help to convert makefile to build.xml

2005-10-28 Thread Jeffrey E Care
To the best of my knowledge there is no tool that an do such a conversion; you must do it by hand. -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer WebSphere Build Tooling Lead (Project Mantis) Sethu Prasad G <[EMAIL PROTECTED]> wrote on 10/28/2005 03:37:13 AM:

Re: Ant fails to delete jars under "lib"

2005-11-01 Thread Jeffrey E Care
Perhaps some process was using that JAR at the time you attempted to delete it? -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer WebSphere Build Tooling Lead (Project Mantis) "Erin Gu" <[EMAIL PROTECTED]> wrote on 11/01/2005 11:28:46 AM: > Hi, I try

Re: help to convert makefile to build.xml

2005-11-02 Thread Jeffrey E Care
m, as they would contain confidential IBM information. -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer WebSphere Build Tooling Lead (Project Mantis) Sethu Prasad G <[EMAIL PROTECTED]> 11/03/2005 12:41 AM Please respond to g_sethuprasad To Jeffrey E Care/Ral

RE: Specifiying user properties file

2005-11-05 Thread Jeffrey E Care
You can also use the fact that Ant creates implicit properties from the Java system properties and do something like this: This will load the user's specific properties file from their home directory. -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer WebSphere

Re: passing the name of a property file as parameter

2005-11-09 Thread Jeffrey E Care
-- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer WebSphere Build Tooling Lead (Project Mantis) Lothar Krenzien <[EMAIL PROTECTED]> wrote on 11/09/2005 11:06:09 AM: > > Hi, > > I have an Ant script which should use a property file. But I want > to

Re: Logging from custom tasks

2005-11-10 Thread Jeffrey E Care
I can't remember off the top of my head about -q, but the default level is INFO which would give you ERROR, WARNING & INFO. The -v flag gives you that plus VERBOSE, while -d gives you everything. -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer WebSphere Build Too

Re: Extract jar files in an ant task

2005-11-30 Thread Jeffrey E Care
JAR files are simply ZIP files with extra metadata. Use . -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer WebSphere Build Tooling Lead (Project Mantis) Markus Innerebner <[EMAIL PROTECTED]> wrote on 11/30/2005 07:53:06 AM: > Hello @all > > I realized

Re: Extract jar files in an ant task

2005-11-30 Thread Jeffrey E Care
is a task, not a target. Why do you need to know the implementing class? Unless you're trying to use Ant programmatically the implementing class is irrelevant. -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer WebSphere Build Tooling Lead (Project Mantis) M

Re: Tar with original permission setting

2005-12-02 Thread Jeffrey E Care
e the existing file permissions (instead of defining your own) then you must exec the native tar executable on your platform. JEC -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer WebSphere Build Tooling Lead (Project Mantis) Leon Pu <[EMAIL PROTECTED]> 12/02/2005 09:3

Re: How to use ANT as a command shell

2005-12-06 Thread Jeffrey E Care
Ant is not intended to be used in this way. The fact that you can kind of hack it together to work should not be taken as encouragement to do so. You might want to read "Ant in Anger" (http://ant.apache.org/ant_in_anger.html) before setting yourself on this course. JEC -- Jeffr

Re: J2ee application --- jsp files

2005-12-13 Thread Jeffrey E Care
Wouldn't that depend on the application server that you are using? -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer WebSphere Build Tooling Lead (Project Mantis) "Jonnalagadda, Sumithra" <[EMAIL PROTECTED]> 12/13/2005 01:52 PM Please respond to

Re: Using properties like variables

2005-12-14 Thread Jeffrey E Care
There has been a fair amount of discussion on the developer list about providing scoped properties for macrodefs, but I'm not sure where we are on that. -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer WebSphere Build Tooling Lead (Project Mantis) <[EMAIL P

Re: FTP problems

2005-12-17 Thread Jeffrey E Care
Since you are running this in the Eclipse environment something else to make sure of is that commons-net & oro are actually on the Ant classpath _as used by Eclipse_ ; I don't think just dropping the JARs in the Ant plugin's "lib" directory is enough. -- Jeffrey E

Re: FTP problems

2005-12-17 Thread Jeffrey E Care
You can also add them to the classpath for each "run configuration" by clicking on the classpath tab. Run | External tools | External tools... JEC -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer WebSphere Build Tooling Lead (Project Mantis) Gilbert Rebh

Re: source attribute

2005-12-20 Thread Jeffrey E Care
Try source="1.4" as well as target="1.4" -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer WebSphere Build Tooling Lead (Project Mantis) "Lim, Teck Hooi" <[EMAIL PROTECTED]> wrote on 12/20/2005 06:14:35 AM: > Hi, > > >

Re: Target duration

2005-12-22 Thread Jeffrey E Care
it's IBM confidential. JEC -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer WebSphere Build Tooling Lead (Project Mantis) "Bruno PRIN" <[EMAIL PROTECTED]> wrote on 12/22/2005 11:29:16 AM: > > Hello, > > We use ant to build 130 modules. >

Re: rsync

2005-12-22 Thread Jeffrey E Care
AFAIK there's no rsync task. It should be fairly easy to use though to just execute the native application. Try checking the manual for the task. JEC -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer WebSphere Build Tooling Lead (Project Mantis) "Sommers,

Re: WebSphere Deployment

2005-12-28 Thread Jeffrey E Care
I can't speak to weblogic, but WebSphere ships ant tasks for these types of functions; check the InfoCenter for more information. JEC -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer WebSphere Build Tooling Lead (Project Mantis) Alan Andrade <[EMAIL PROTECTED]&g

Re: echoproperties and umlauts

2005-12-29 Thread Jeffrey E Care
I don't know what it will do to the line breaks, but you could maybe run a reverse native2ascii on the output file to "unescape" it. JEC -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer WebSphere Build Tooling Lead (Project Mantis) Steve Loughran <[EMAIL

Re: AW: Deployment to Websphere 6

2006-01-06 Thread Jeffrey E Care
that your deployment steps work in the supported environment so we can try to localize the problem to just the environment. JEC -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer WebSphere Build Tooling Lead (Project Mantis) [EMAIL PROTECTED] wrote on 01/06/2006 07:40:43 AM:

Re: Deployment to Websphere 6

2006-01-06 Thread Jeffrey E Care
unless you're running on Sun or HPUX the only VM we support is the IBM VM. I'll forward this series of notes along to our team that works on the ant tasks to see if they have any suggestions. JEC -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer WebSphere Build Tool

Re: Perform tasks conditionally

2006-01-06 Thread Jeffrey E Care
The jar task already figures this out for you. -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer WebSphere Build Tooling Lead (Project Mantis) Steve Roy <[EMAIL PROTECTED]> wrote on 01/06/2006 09:24:43 PM: > Hello, > > I have been using Ant for about a y

Re: Ant and Questions

2006-01-09 Thread Jeffrey E Care
;s logging API is very basic; it should not be hard to figure out. -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer WebSphere Build Tooling Lead (Project Mantis)

Re: scope of types

2006-01-10 Thread Jeffrey E Care
I'm sorry, is there a question in there, or are you making a statement? -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer WebSphere Build Tooling Lead (Project Mantis) "shreedhar natarajan" <[EMAIL PROTECTED]> wrote on 01/10/2006 07:46:21 PM: > H

RE: scope of types

2006-01-11 Thread Jeffrey E Care
You might want to read up on this then: http://www.catb.org/~esr/faqs/smart-questions.html -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer WebSphere Build Tooling Lead (Project Mantis) "shreedhar natarajan" <[EMAIL PROTECTED]> wrote on 01/11/2006 10:50:11

Re: help please

2006-01-13 Thread Jeffrey E Care
Don't spam both the developer list and the user list: pick one. Also, a simple Google search would have been in order here: http://www.google.com/search?q=%22out+of+environment+space%22 -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer WebSphere Build Tooling Lead (Pr

Re: error msg for incorrect jar/basedir value

2006-01-16 Thread Jeffrey E Care
If you are going to submit a bug report I would advise you to submit a patch along with it. -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer WebSphere Build Tooling Lead (Project Mantis) glenn opdycke-hansen <[EMAIL PROTECTED]> wrote on 01/16/2006 08:27:38 AM: >

Re: Auto task need to take backup before deployemnt

2006-01-17 Thread Jeffrey E Care
http://www.catb.org/~esr/faqs/smart-questions.html -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer WebSphere Build Tooling Lead (Project Mantis) "Karthik" <[EMAIL PROTECTED]> wrote on 01/17/2006 06:27:24 AM: > > Hi form > > >using ant

Re: Jar task

2006-01-17 Thread Jeffrey E Care
As for the duplicates, either use the basedir, or use the nested fileset: not both. As for META-INF, how do you know that it is lowercased in the JAR? -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer WebSphere Build Tooling Lead (Project Mantis) Guruprasad R <[EM

Re: Jar task

2006-01-17 Thread Jeffrey E Care
Don't trust winzip - use a real unzip program and actually unzip it. -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer WebSphere Build Tooling Lead (Project Mantis) Guruprasad R <[EMAIL PROTECTED]> 01/17/2006 06:55 AM Please respond to "Ant Users List&

RE: Auto task need to take backup before deployemnt

2006-01-17 Thread Jeffrey E Care
ld be hiring them instead? Describe your goal, describe your problem & describe what you have done so far to solve that problem & describe where you're stuck; that's how to ask a smart question on this list. -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer W

RE: Auto task need to take backup before deployemnt

2006-01-17 Thread Jeffrey E Care
is for Ant _users_ to help _each other_ solve problems. No one can & no one will help you if you're just going to passively say "I need X, help me please!" I would really suggest that you read the advice on the smart questions FAQ. -- Jeffrey E. Care ([EMAIL PROTECTED]) Web

Re: Setting memory options for Ant in Eclipse

2006-01-17 Thread Jeffrey E Care
Is your run config. spawning a new VM for the Ant run, or are you running within the same VM instance as Eclipse? JEC -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer WebSphere Build Tooling Lead (Project Mantis) "Brown, Carlton" <[EMAIL PROTECTED]> wrote o

Re: command execution

2006-01-18 Thread Jeffrey E Care
You don't need - use instead. -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer WebSphere Build Tooling Lead (Project Mantis) Guruprasad R <[EMAIL PROTECTED]> wrote on 01/18/2006 07:40:44 AM: > I am using ant on my Windows 2000 OS. I want to execute a

Re: Batch file execution fails on Win XP with java.io.Exception error=2

2006-01-19 Thread Jeffrey E Care
Read the manual page for the task; it should give you a hint. -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer WebSphere Build Tooling Lead (Project Mantis) Ramesh M <[EMAIL PROTECTED]> wrote on 01/18/2006 07:34:11 AM: > I have the folllowing fragment in an ant

Re: Issue warning from task

2006-01-24 Thread Jeffrey E Care
log ("your message here", Project.MSG_ERR); -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer WebSphere Build Tooling Lead (Project Mantis) Ian Pilcher <[EMAIL PROTECTED]> Sent by: news <[EMAIL PROTECTED]> 01/24/2006 01:28 PM Please respond to "

Re: Issue warning from task

2006-01-24 Thread Jeffrey E Care
Yeah, whoops; sorry about that. -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer WebSphere Build Tooling Lead (Project Mantis) Matt Benson <[EMAIL PROTECTED]> wrote on 01/24/2006 02:08:59 PM: > Better yet, MSG_WARN. ;) > > --- Jeffrey E Care <[EMAIL

Re: : add arbitrary set of properties?

2006-01-27 Thread Jeffrey E Care
idea. If you submit a patch for this I have a good feeling that the committers would accept it. JEC -- Jeffrey E. Care ([EMAIL PROTECTED]) WAS Pyxis Lead Release Engineer

Re: : add arbitrary set of properties?

2006-01-27 Thread Jeffrey E Care
re using the manifest to store additional metadata about the archive, so I can definitely see the need for a more generalized way of getting entries into the manifest. -- Jeffrey E. Care ([EMAIL PROTECTED]) WAS Pyxis Lead Release Engineer

Re: Copy-Task

2006-01-31 Thread Jeffrey E Care
already does timestamp checks, and it already has @overwrite. I think you need to use a selector to accomplish what you're trying to do. -- Jeffrey E. Care ([EMAIL PROTECTED]) WAS Pyxis Lead Release Engineer "Markus M. May" <[EMAIL PROTECTED]> wrote on 01/31/2006 0

Re: Hiding target names during output

2006-02-01 Thread Jeffrey E Care
I would recommend a custom logger class. -- Jeffrey E. Care ([EMAIL PROTECTED]) WAS Pyxis Lead Release Engineer chuanjiang lo <[EMAIL PROTECTED]> 02/01/2006 10:28 AM Please respond to "Ant Users List" To user@ant.apache.org cc Subject Hiding target names during output

RE: Copy-Task

2006-02-01 Thread Jeffrey E Care
You still need to pull down all of the bytes to compute the MD5 sum. -- Jeffrey E. Care ([EMAIL PROTECTED]) WAS Pyxis Lead Release Engineer "Stephen McConnell" <[EMAIL PROTECTED]> 02/01/2006 10:36 AM Please respond to "Ant Users List" To "'Ant Use

Re: Hiding target names during output

2006-02-01 Thread Jeffrey E Care
Information on loggers & listeners is available here: http://ant.apache.org/manual/listeners.html In the future, please confine your replies to the list. You might consider the advice offered here: http://www.catb.org/~esr/faqs/smart-questions.html#noprivate -- Jeffrey E. Care ([E

Re: Filtering on property values

2006-02-03 Thread Jeffrey E Care
IIRC ant-contrib has a task that can do regex replacements on properties. -- Jeffrey E. Care ([EMAIL PROTECTED]) WAS Pyxis Lead Release Engineer Matthew Hughes <[EMAIL PROTECTED]> wrote on 02/03/2006 12:33:20 PM: > I have a property > > > > In certain tasks, I want th

Re: Problem help needed reply urgent.

2006-02-06 Thread Jeffrey E Care
http://publib.boulder.ibm.com/infocenter/wasinfo/v6r0/index.jsp -- Jeffrey E. Care ([EMAIL PROTECTED]) WAS Pyxis Lead Release Engineer "Shweta Bodade" <[EMAIL PROTECTED]> wrote on 02/06/2006 08:57:04 AM: > > Can u help me with how to build a build.xml file for deployin

Re: Please help....Urgent..Using inside the script

2006-02-10 Thread Jeffrey E Care
Sorry, I don't think you are providing enough information for anyone to help you; I certainly can't understand your scenario, as you seem to have two build.xml files you're working with, but you've only provided one that I can see. In any case, here is some helpful advice: http://www.catb.org/~es

Re: builds and App. Server

2006-02-12 Thread Jeffrey E Care
What solutions have you tried already? Where are you having problems? You aren't giving us much to go on here. If you are looking for someone to completely design a solution for you (for free no less) then you have come to the wrong place. There are people on this list who make their living sel

Re: How to get the value of a system's environment variable

2006-02-12 Thread Jeffrey E Care
Read the manual for the task. > I would like to get the value of some system environment variables, > such as TOMCAT_HOME, PATH, CVSROOT, etc, as a property inside my ant script.

Re: Way to examine a property value?

2006-02-14 Thread Jeffrey E Care
Are you talking about antcontrib? -- Jeffrey E. (Jeff) Care ([EMAIL PROTECTED]) IBM WebSphere Application Server Development "Frank W. Zammetti" <[EMAIL PROTECTED]> wrote on 02/14/2006 10:34:21 AM: > Maybe someone can refresh my memory... I seem to remember a contrib to Ant > that allows you to

Re: Real meaning of javac target/source attributes

2006-02-16 Thread Jeffrey E Care
Your assumptions are incorrect; @target & @source have to do with language features and class file formats, not APIs. The only 100% safe way I know of to make sure you aren't using improper APIs is to make sure you are compiling against the class library from the *lowest common denominator* JDK

Re: Real meaning of javac target/source attributes

2006-02-17 Thread Jeffrey E Care
> > There are other ways to accomplish this (and Ant itself makes use of > > some of those techniques) but you can't rely on those being 100% > > safe. > > Such as? I'm really curious. The usual tricks, like checking for the existence of a class known to be introduced in a given JRE version, lo

Re: Ant ,ftp,java

2006-02-20 Thread Jeffrey E Care
Double check your port numbers. Jeffrey E. (Jeff) Care [EMAIL PROTECTED] IBM WebSphere Application Server Development WAS Pyxis Lead Release Engineer "Karthik" <[EMAIL PROTECTED]> wrote o

RE: Ant ,ftp,java

2006-02-20 Thread Jeffrey E Care
 the task is  processeed sucessfully. > > > On running the  same target using "ant -buildfile unix.xml" > > The ftp access is able to perform sucessfully (on the same port 22) > > > with regards > Karthik > > >   -Original Message- >   F

Re: Delete a dir set

2006-03-02 Thread Jeffrey E Care
You need to play with the default excludes. Jeffrey E. (Jeff) Care [EMAIL PROTECTED] IBM WebSphere Application Server Development WAS Pyxis Lead Release Engineer Giovanni Mesturini <[EMAI

Re: FTP get from Win32 server

2006-03-03 Thread Jeffrey E Care
This is really a commons-net question; Ant doesn't play a role in parsing the FTP server responses. You might get further if you transfer this discussion to the commons-net mailing list. Jeffrey E. (J

Re: How to access command line arguments passed to Ant. How to search Ant manual.

2006-03-06 Thread Jeffrey E Care
Google with the "site:" option. Jeffrey E. (Jeff) Care [EMAIL PROTECTED] IBM WebSphere Application Server Development WAS Pyxis Lead Release Engineer <[EMAIL PROTECTED]> wrote on 03/06/20

Re: JAVAC Classpath

2006-03-06 Thread Jeffrey E Care
That's documented pretty clearly in the manual. Jeffrey E. (Jeff) Care [EMAIL PROTECTED] IBM WebSphere Application Server Development WAS Pyxis Lead Release Engineer "Rosenberg, Eric" <[E

Re: A problem with the ant task in a WLS 9.1 environmen t

2006-03-08 Thread Jeffrey E Care
This sounds like a problem for BEA support, not the Ant user mailing list Jeffrey E. (Jeff) Care [EMAIL PROTECTED] IBM WebSphere Application Server Development WAS Pyxis Lead Release Enginee

Re: XmlProperty caching values

2006-03-24 Thread Jeffrey E Care
Ant properties are immutable. Jeffrey E. (Jeff) Care [EMAIL PROTECTED] IBM WebSphere Application Server Development WAS Pyxis Lead Release Engineer "Arun Gupta" <[EMAIL PROTECTED]> wrote

Re: Task to count files in a fileset?

2006-03-25 Thread Jeffrey E Care
Not that I can recall. Jeffrey E. (Jeff) Care [EMAIL PROTECTED] IBM WebSphere Application Server Development WAS Pyxis Lead Release Engineer "Rick Genter" <[EMAIL PROTECTED]> 03/25/2

Re: how to return a String object in custom Ant

2006-03-27 Thread Jeffrey E Care
execute returns void; i think what you want to do is set a property Jeffrey E. (Jeff) Care [EMAIL PROTECTED] IBM WebSphere Application Server Development WAS Pyxis Lead Release Engineer T

Re: How to process multiple files using exec

2006-03-27 Thread Jeffrey E Care
use apply, not exec Jeffrey E. (Jeff) Care [EMAIL PROTECTED] IBM WebSphere Application Server Development WAS Pyxis Lead Release Engineer murthy gandikota <[EMAIL PROTECTED]> wrote on 03/

Re: Removing only the Children of a folder

2006-03-28 Thread Jeffrey E Care
Just a helpful tip: the gurus on this list who hang out to help the newbs usually find it really annoying when people post the same question twice in one day. Please allow at least 48 hours before posting your question again. _

Re: Ant task to replace special characters

2006-03-28 Thread Jeffrey E Care
I can't speak to , but I know that does not require a token file; try reading the docs again. Jeffrey E. (Jeff) Care [EMAIL PROTECTED] IBM WebSphere Application Server Development WAS Pyxis Lea

Re: Urgent : Send me some Initial Docs

2006-03-29 Thread Jeffrey E Care
You might want to try reading the "Smart Questions" FAQ before posting to this list again. http://www.catb.org/~esr/faqs/smart-questions.html Jeffrey E. (Jeff) Care [EMAIL PROTECTED] IBM WebSphere

Re: ANT WSAD JUNIT

2006-03-29 Thread Jeffrey E Care
You might want to try reading the "Smart Questions" FAQ before posting to this list again. http://www.catb.org/~esr/faqs/smart-questions.html Jeffrey E. (Jeff) Care [EMAIL PROTECTED] IBM WebSphere

Re: Optional FTP task 'account' attribute needed

2006-03-31 Thread Jeffrey E Care
Your best bet to get this implemented would be to write up a feature request in bugzilla & attach a patch that implements the feature. Jeffrey E. (Jeff) Care [EMAIL PROTECTED] IBM WebSphere Applic

Re: Building ant tasks with ant

2006-04-01 Thread Jeffrey E Care
Take a very close look at the attributes of the javac task. Jeffrey E. (Jeff) Care [EMAIL PROTECTED] IBM WebSphere Application Server Development WAS Pyxis Lead Release Engineer Tommy

Re: Dynamically increase the number of arguments to EXEC task based on the number and name of the file(s) in a directory.

2006-04-06 Thread Jeffrey E Care
Use the task. Jeffrey E. (Jeff) Care [EMAIL PROTECTED] IBM WebSphere Application Server Development WAS Pyxis Lead Release Engineer "Guttula, Mohan" <[EMAIL PROTECTED]> wrote on 04/06/20

Re: Parallel vs Sequential

2006-04-06 Thread Jeffrey E Care
Just think about it logically: if you have a multi-proc machine with good disks then yes, you can see performance improvements by building things in parallel. If you have a single-proc machine with a rinky-dink 5400 RPM drive then no, chances are that you won't see any performance benefit (and mig

Re: Property problem in 1.6.5

2006-04-06 Thread Jeffrey E Care
This is working as designed; ant, antcall & subant create new contexts and property values set in the context ARE NOT propegated back to the calling context. Jeffrey E. (Jeff) Care [EMAIL PROTECTED]

Re: Copy paradox - permissions and filters

2006-04-07 Thread Jeffrey E Care
The core problem is that there is no 100% pure Java way to get or set file permissions. See JSR 203 (http://www.jcp.org/en/jsr/detail?id=203) Jeffrey E. (Jeff) Care [EMAIL PROTECTED] IBM WebSphere

  1   2   3   >