RE: AW: Deployment to Websphere 6

2006-01-06 Thread Erskine, Chris
The version of ant that IBM is using is 1.5.4. Was there a change in the task structure that would require external tasks to be updated to run under 1.6.5? Chris Erskine EDS Consulting Services Colorado Springs, CO Phone: 719-265-5962 Cell: 719-640-6488 -Original Message- From: [EMA

RE: websphere script install problem

2006-01-03 Thread Erskine, Chris
Also, related to this, execute the wsadmin command outside of Ant and debug it. There is also a way to define the virtual host within JACL if you do not have the xmi file. Chris Erskine EDS Consulting Services Colorado Springs, CO Phone: 719-265-5962 Cell: 719-640-6488 -Original Message-

RE: Building ejb.jar file for webspher

2005-11-18 Thread Erskine, Chris
5-0205 -Original Message- From: Erskine, Chris [mailto:[EMAIL PROTECTED] Sent: Friday, November 18, 2005 4:31 PM To: Ant Users List Subject: RE: Building ejb.jar file for webspher I am not creating a jar file. I start by building an war file. Then in this task, I copy the war file to t

RE: Building ejb.jar file for webspher

2005-11-18 Thread Erskine, Chris
Regards Afshin Bozorgzadeh >Fidelity Investments Brokerage Company >FBCT ClearCase Release Engineer [EMAIL PROTECTED] Phone 603-791-5596 BlackBerry 603-365-0205 -Original Message- From: Erskine, Chris [mailto:[EMAIL PROTECTED] Sent: Friday, November 18, 2005 3:47 PM To: Ant

RE: Building ejb.jar file for webspher

2005-11-18 Thread Erskine, Chris
I do this all the time. The ejb task is Chris Erskine EDS Consulting Services Colorado Springs, CO Phone: 719-265-5962 Cell: 719-640-6488 -Original Message- From: Bozorgdadeh, Afshin [mailto:[EMAIL PR

RE: Help with choosing build property file

2005-10-07 Thread Erskine, Chris
I do something like this. Since each machine is set up differently, I have a properties file that I put into the root directory. This allows me to then have machine dependent properties on each machine and my build script knows where to find the file for it. In this file, you could put your h

RE: Classpath issue

2005-10-06 Thread Erskine, Chris
Rather than using ant within CC, use the antscript attribute on the ant task. This will allow you to then use the version of ant that you install on your machine rather than the version that ships with CC. Chris Erskine EDS Consulting Services Colorado Springs, CO Phone: 719-265-5962 Cell: 7

RE: cd shell script command - ant equivalent?

2005-09-30 Thread Erskine, Chris
Look at the dir attribute on the exec task. Chris Erskine EDS Consulting Services Colorado Springs, CO Phone: 719-265-5962 Cell: 719-640-6488 -Original Message- From: Chad Armstrong [mailto:[EMAIL PROTECTED] Sent: Friday, September 30, 2005 4:53 PM To: Ant Users List Subject: cd she

RE: Very basic newby problem?

2005-09-13 Thread Erskine, Chris
When you are calling Ant, are you giving it a target to execute? Since your project tag does not have the 'default' attribute in it, Ant does not know what target to execute. Chris Erskine EDS Consulting Services Colorado Springs, CO Phone: 719-265-5962 Cell: 719-640-6488 > -Original M

RE: regular expression

2005-03-04 Thread Erskine, Chris
Note that that would fail due to not having a comma after the last digit. Chris Erskine EDS Consulting Services Colorado Springs, CO Phone: 719-265-5962 Cell: 719-640-6488 > -Original Message- > From: Mark Lundquist [mailto:[EMAIL PROTECTED] > Sent: Friday, March 04, 2005 9:46 AM >

RE: regular expression

2005-03-04 Thread Erskine, Chris
What are you looking for from the RE? A quick one would be ([0-9]+,[0-9]+,[0-9]+,[0-9]+) Which should find 4 multi-digit numbers with comma's between them Chris Erskine EDS Consulting Services Colorado Springs, CO Phone: 719-265-5962 Cell: 719-640-6488 > -Original Message- > From

RE: Environment variables

2005-01-11 Thread Erskine, Chris
Or try calling a batch file which first calls your .Net setup and then calls Visual Studio. Chris Erskine EDS Consulting Services F5-EDS-001 2424 Garden of the Gods Rd Colorado Springs, CO 80919 Phone: 719-265-5962 > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTEC

RE: passing parameters to ant

2005-01-11 Thread Erskine, Chris
So, since you are on windows, change the parameters to be something like -DDevBuild1=%1. The $ is the Unix substitution while with MS, it is the % sign. Chris Erskine EDS Consulting Services F5-EDS-001 2424 Garden of the Gods Rd Colorado Springs, CO 80919 Phone: 719-265-5962 > -Origina

RE: Ant should have an ext directory

2005-01-05 Thread Erskine, Chris
the Gods Rd Colorado Springs, CO 80919 Phone: 719-265-5962 > -Original Message- > From: James Abley [mailto:[EMAIL PROTECTED] > Sent: Wednesday, January 05, 2005 2:02 AM > To: Ant Users List > Subject: RE: Ant should have an ext directory > > On Wed, 2005-01

RE: Ant should have an ext directory

2005-01-05 Thread Erskine, Chris
Ant should have an ext directory > > Have you tried setting the ANT_ARGS to "-lib /yourcompany/ant/ext" ? > > Jan > > > -Ursprüngliche Nachricht- > > Von: Erskine, Chris [mailto:[EMAIL PROTECTED] > > Gesendet am: Mittwoch, 5. Januar 2005 05:50

RE: Ant should have an ext directory

2005-01-04 Thread Erskine, Chris
I do not think that we are saying to use Maven. I am asking for a way to support different versions of third party jars from the same instance of ant. Maven is being used as an example of one way to do it. I do not need the auto-download functionality of Maven or the automatic repository. I wou

RE: Ant should have an ext directory

2005-01-04 Thread Erskine, Chris
The big issue that I see with all of these solutions the fact that you are forcing all projects to use the same version of the external jars. This means that when a major new version of some support jar comes out, I have to either change all of my build scripts to use the new version at the same t

RE: How to get ANT + CVS to work in Eclipse?

2004-12-15 Thread Erskine, Chris
Do a CVS login command at a command prompt. That will hash a password for you in the .cvspass file. After that, you should be able to get by without having to login for your CVS commands on that repository Chris Erskine EDS Consulting Services F5-EDS-001 2424 Garden of the Gods Rd Colorado Spr

RE: Ant library paths

2004-12-14 Thread Erskine, Chris
ffect. Since > calls to should (?10th assumption of the day?) pass all the same > arguments that were passed to them, the "-lib" switch will be passed > along to the "second" ant... by which time this directory will exist! Of > course, this hinges on the assumpt

RE: Ant library paths

2004-12-13 Thread Erskine, Chris
; > I've never used cruisecontrol, so please educate me if my assumptions are > wrong... > > /t > > >-Original Message- > >From: Erskine, Chris [mailto:[EMAIL PROTECTED] > >Sent: Friday, December 10, 2004 11:43 PM > >To: Ant Users List > >Sub

Bug in CVS module or documentation

2004-12-12 Thread Erskine, Chris
I have found either bug in the CVS task or unclear documentation. For the cvs task, using the 'dest' attribute it states that it is the directory that the files will be checked out files should be placed. It appears that it is really the directory where the module will be checked out to. Chris

RE: Ant library paths

2004-12-11 Thread Erskine, Chris
org/manual/CoreTasks/property.html > > I think thats Enough free advice for today > Bye, > > - Original Message - > From: "Erskine, Chris" <[EMAIL PROTECTED]> > To: "Ant Users List" <[EMAIL PROTECTED]> > Sent: Friday, December 10, 20

RE: Ant library paths

2004-12-10 Thread Erskine, Chris
80919 Phone: 719-535-6064 > -Original Message- > From: Laconia Data Systems [mailto:[EMAIL PROTECTED] > Sent: Friday, December 10, 2004 3:55 PM > To: Erskine, Chris > Cc: Ant Users List > Subject: Re: Ant library paths > > The agreed upon way for one build.xml to c

RE: Ant library paths

2004-12-10 Thread Erskine, Chris
; From: RADEMAKERS Tanguy [mailto:[EMAIL PROTECTED] > Sent: Friday, December 10, 2004 11:35 AM > To: Ant Users List > Subject: RE: Ant library paths > > Hi Chris, > > You could try using the task and specifying the -lib switch. > > Regs, > /t > > >-

RE: Ant library paths

2004-12-10 Thread Erskine, Chris
> > ../lib/*.zip > ../lib/*.jar > > > > > Edward Wittmann > > > > > > "Erskine, Chris" <[EMAIL PROTECTED]> > 12/10/2004 12:47 PM > Please respond to "Ant Users List" > > To: [EMAIL PROTECTED] >

Ant library paths

2004-12-10 Thread Erskine, Chris
I have seen a number of mails about the ant runtime path for items like the optional jar files. The environment that I am working with is running under CruiseControl, I am calling a build file that will delete the project directory and then recreate it. In this project, I want to have an ant lib

RE: Extract property out of multiline file

2004-12-08 Thread Erskine, Chris
Since you already have the , in the line, you do not want to replace the line.separator with a new comma. Change the replace to replace="" and you will not be adding the extra comma. To get rid of the last comma, I would try something like another pass through the file replacing the comma at the

RE: problem in ant init

2004-11-23 Thread Erskine, Chris
Missed it before but it looks like you are missing the log4j jar file. Chris Erskine EDS Consulting Services F5-EDS-001 2424 Garden of the Gods Rd Colorado Springs, CO 80919 Phone: 719-535-6064 > -Original Message- > From: Nagendra Singh [mailto:[EMAIL PROTECTED] > Sent: Monday, Nov

RE: Fileset within a jar file

2004-11-23 Thread Erskine, Chris
sociated with the nested element. > Use: > > > > > > > > > > > > > or > > > > > > > > > > > > > > instead. > > Peter > Er

Fileset within a jar file

2004-11-22 Thread Erskine, Chris
Working with Ant 1.6.2 on a Linux machine, I am trying to create a jar file. As part of my jar file, I want to exclude my test classes. I am using the following: The problem that I am having is that it is

RE: Annoying messages

2004-11-19 Thread Erskine, Chris
Hey, This is a family based group. Chris Erskine EDS Consulting Services F5-EDS-001 2424 Garden of the Gods Rd Colorado Springs, CO 80919 Phone: 719-535-6064 > -Original Message- > From: Stefan Bodewig [mailto:[EMAIL PROTECTED] > Sent: Friday, November 19, 2004 8:58 AM > To: [EMAIL

RE: Writing system command as Task

2004-11-17 Thread Erskine, Chris
So, Rajesh, a good starting point would be to look at the code for the exec task and use it to call your application. Chris Erskine EDS Consulting Services F5-EDS-001 2424 Garden of the Gods Rd Colorado Springs, CO 80919 Phone: 719-535-6064 > -Original Message- > From: Rajesh [mailt

Wild card values with exec task

2004-11-16 Thread Erskine, Chris
I have a user who is trying to use the exec task to link a program. As part of the command line, he is trying to add the argument *.o to link in all of the objects. Using does not seem to work. What is the right way to pass in a wildcard option? This is running on a Sun box using Ant 1.6.2 C

RE: Trying to run CGI script on server after build

2004-11-05 Thread Erskine, Chris
The quickest one that I can think of is WebTest from Canoo at http://webtest.canoo.com/webtest/manual/WebTestHome.html The tests that you build for this are done in an ant script so should be easy to integrate into your build. The next one would be to code your own java test using something like

RE: Cross-Platform Exec Task

2004-10-29 Thread Erskine, Chris
If you are looking at just choosing between a shell script under *nix and a batch or command file under Windows, a quick trick is to execute 'executable'. On Windows, it will execute 'executable.[bat|cmd|exe] while under *nix, it will execute 'executable'. This way, you do not have to do any condi

RE: Improving Tasks

2004-10-22 Thread Erskine, Chris
My first guess would be if this could be done using Swing with a popup. This would work an most systems - just not the ones where I am running in a terminal window or a background task like cron. Chris Erskine EDS Consulting Services F5-EDS-001 2424 Garden of the Gods Rd Colorado Springs, CO 80

RE: winning the case for ANT

2004-10-19 Thread Erskine, Chris
--- > From: Bill Rich [mailto:[EMAIL PROTECTED] > Sent: Tuesday, October 19, 2004 10:42 AM > To: 'Ant Users List' > Subject: RE: winning the case for ANT > > "[Erskine, Chris] I agree that Ant is a build tool. As a build tool, it > requires something to tell it

RE: winning the case for ANT

2004-10-19 Thread Erskine, Chris
8, 2004 9:15 AM > To: Ant Users List > Subject: RE: winning the case for ANT > > I have to correct a few things here. > > >-Original Message- > >From: Erskine, Chris [mailto:[EMAIL PROTECTED] > >Sent: Friday, October 15, 2004 7:33 AM > >To: Ant Use

RE: AW: parsing ant build scripts from unusual sources

2004-10-15 Thread Erskine, Chris
So, if I understand you right, you are saying that because the build.xml file was not read from the file system, I will have problems assuming where the other files like .properties files will be? I guess that I would have the same types of issues on things like where the source files are located

RE: winning the case for ANT

2004-10-15 Thread Erskine, Chris
XML is just a standard way of formatting data. In this case, the lines of data are script commands. You could define this format as a scripting language. Each tool has its own formatting syntax. If you look at Make, it has its own format that has the problem of the first character on a line hav