using ant option in eclipse

2006-02-02 Thread panji
hi, I want to use some ant option like -f and so on in eclipse. But how can I do it ? I also want to run specific target i've made. But I still don't know how to do it in eclipse. Can anyone help me ?? Thanks. __ Apakah Anda Yahoo!? Lelah menerim

Re: Merge manifest files

2006-02-02 Thread Giovanni Mesturini
--- Stefan Bodewig <[EMAIL PROTECTED]> ha scritto: > On Thu, 2 Feb 2006, Giovanni Mesturini > <[EMAIL PROTECTED]> wrote: > > > I'm going to set up a temporary-maven-compilant > > project, taking source code from many different > src > > dirs into one. I can't find the way to merge up > all > >

RE: replace < with < in property ??

2006-02-02 Thread Rebhan, Gilbert
Hi, Klaus OK that works, but only because you declare the property with 'double' masked syntax = <bla>foobar</bla> But i get the property via xmlpropertyfile with 'simple' masked syntax = foobar Background = users write some instructions for Websphere admins in a text fie

Re: Merge manifest files

2006-02-02 Thread Stefan Bodewig
On Thu, 2 Feb 2006, Giovanni Mesturini <[EMAIL PROTECTED]> wrote: > I'm going to set up a temporary-maven-compilant > project, taking source code from many different src > dirs into one. I can't find the way to merge up all > manifest files from many projects into a single one. There is no built-

RE: replace < with < in property ??

2006-02-02 Thread Allwicher, Klaus
Your solution with regex is nearly correct, but you have to escape < and > ;-) The below snippet was successful tested :-) test: [echo] Input: 'foobar

Problem with explicit path setting inside a target

2006-02-02 Thread Srikrishna_Parthasarathy
If I have weblogic.jar and jsafeFIPS.jar in the ant_home/lib dir, I am successful. If I also do this BUILD SUCCESSFUL Total time: 4 seconds C:\antscripts>ant -lib .\lib -f weblogicdeploy.xml deploy Buildfile: weblogicdeploy.xml If I try to set it explicitly build fails .It is no

Re: Ant-based installers

2006-02-02 Thread Andrew Goktepe
Thanks for the suggestions! I'm pretty sure both AntInstaller and AntForms could provide what I'm looking for. -Andrew On 2/2/06, Rebhan, Gilbert <[EMAIL PROTECTED]> wrote: > > > Hi, > > i your script is ready to use and all you want > to achieve is to collect the properties via gui > have a loo

Re: replace < with < in property ??

2006-02-02 Thread Gilbert Rebhan
Hi, thanks for your suggestions : > Remember that in XML < is turned into < before ant sees it, so you > need to escape the search and replace > strings: > > > input="${auftrag.bemerkung}" >regexp="<" >replace="<" >

RE: Getting problem in running weblogic generated ant script

2006-02-02 Thread Karr, David
Are you building this on the same box that you generated the Ant script from? Is "C:/builds/vice/BaseLine1.0/source/vice" still where your app source code is located? > -Original Message- > From: ashish [mailto:[EMAIL PROTECTED] > > Hi > I am using an ant build script generated by weblo

Re: replace < with < in property ??

2006-02-02 Thread Steve Loughran
Rebhan, Gilbert wrote: Hi, Problem = i have a property like that : foobar and i want it to convert to = foobar before putting in in a mailbody i've tried = but that is not accepted. no, obviously not. Remember that in XML < is turned into < before ant sees it, so you need

Re: replace < with < in property ??

2006-02-02 Thread Sujeet Banerjee
Hello Gilbert The attribute "regexp" represents the regular expression which is matched in the input string. You are trying to match a pattern that's a part of the input string. I'd suggest using perl (can be executed both in Linux/Win-x platforms) -Sujeet - Original Message - From

Merge manifest files

2006-02-02 Thread Giovanni Mesturini
Hi all, I'm going to set up a temporary-maven-compilant project, taking source code from many different src dirs into one. I can't find the way to merge up all manifest files from many projects into a single one. Any suggestion? I've also considered the possibility to use a (unknown) task to mer

RE: Ant-based installers

2006-02-02 Thread Rebhan, Gilbert
Hi, i your script is ready to use and all you want to achieve is to collect the properties via gui have a look @ AntForms. give it a shot = http://antforms.sourceforge.net/ Gilbert -Original Message- From: Andrew Goktepe [mailto:[EMAIL PROTECTED] Sent: Thursday, February 02, 2006 2:

Re: Ant-based installers

2006-02-02 Thread Mark Russell
Andrew Goktepe wrote: have a gui for end users that creates a script for deploying to the local box? No. It doesn't have to create a script - I already have one. make it easy for someone who doesn't know ant to deploy to many systems? Yes. The Ant script does all of the real wor

replace < with < in property ??

2006-02-02 Thread Rebhan, Gilbert
Hi, Problem = i have a property like that : foobar and i want it to convert to = foobar before putting in in a mailbody i've tried = but that is not accepted. i've tried with javascript =

Re: Ant-based installers

2006-02-02 Thread Andrew Goktepe
>have a gui for end users that creates a script for deploying to the local box? No. It doesn't have to create a script - I already have one. >make it easy for someone who doesn't know ant to deploy to many systems? Yes. The Ant script does all of the real work, but it's exposure to the user should

Re: Getting problem in running weblogic generated ant script

2006-02-02 Thread Sujeet Banerjee
Again, it seems that some WLI or WLW jars are not in your system CLASSPATH. Update your system CASSPATH. The IO exception is generated because you can not write into a JAR directly. It has to be first unzipped and stored temporarily. -Sujeet - Original Message - From: ashish To:

Getting problem in running weblogic generated ant script

2006-02-02 Thread ashish
Hi I am using an ant build script generated by weblogic workshop 8.1.3. I am using ant packaged with the weblogic installation(Apache Ant version 1.5.3).We are using java version 1.4.2_04.The ant script is copied below.

AW: Some spelling mistakes in the documentation

2006-02-02 Thread Jan.Materne
applied, thanks Jan Von: Petar Tahchiev [mailto:[EMAIL PROTECTED] Gesendet: Montag, 9. Januar 2006 11:01 An: Ant Users List Betreff: Some spelling mistakes in the documentation Hello everybody,

Re: Please Help

2006-02-02 Thread Sujeet Banerjee
Well, this looks like a Weblogic configuration problem. Did you contact Weblogic Support? -Sujeet - Original Message - From: Guruprasad R To: Ant Users List Sent: Thursday, February 02, 2006 3:44 PM Subject: Please Help Hi I am using an ant build script generated by we

Please Help

2006-02-02 Thread Guruprasad R
Hi I am using an ant build script generated by weblogic workshop 8.1.3. I am using ant packaged with the weblogic installation(Apache Ant version 1.5.3).We are using java version 1.4.2_04.The ant script is copied below.

Re: Ant-based installers

2006-02-02 Thread Steve Loughran
Andrew Goktepe wrote: I am looking for an ant-based GUI installer to configure and deploy our J2EE applications. I have tried Antigen and AntInstaller. I really like AntInstaller, especially its configuration file format and the way it saves all of the user-provided values for repeat runs of the

Re: Copy-Task

2006-02-02 Thread Steve Loughran
Stephen McConnell wrote: -Original Message- From: Steve Loughran [mailto:[EMAIL PROTECTED] Sent: Thursday, 2 February 2006 2:25 AM To: Ant Users List Subject: Re: Copy-Task Stephen McConnell wrote: -Original Message- From: Steve Loughran [mailto:[EMAIL PROTECTED] -you ca