Re: Query regarding impact due to Log4j Tool : Zero Day in Ubiquitous Under Active Attack (CVE-2021-44228)

2021-12-16 Thread Stefan Bodewig
Hi Apache Ant does not depend on log4j 2.x at all and never has. There is an optional Log4JListener that can be used to send Ant's logs through log4j 1.x that has been deprecated for quite some time now. Even if you still use it, logj 1.x is not affected by CVE-2021-44228 (but by several others,

Query regarding impact due to Log4j Tool : Zero Day in Ubiquitous Under Active Attack (CVE-2021-44228)

2021-12-16 Thread Banerjee, Saurabh (Pune)
Hi Team, We are using following jar provided your by. We want to ensure and know if it is impacted by "Apache Log4j Tool : Zero Day in Ubiquitous Under Active Attack (CVE-2021-44228)". If it's impacted please let us know about the security recommendation. To know we are looking for following ans

Re: Queries regarding Apache Ant 1.7.0

2020-06-22 Thread Stefan Bodewig
just adding one more detail to what Jaikiran said: On 2020-06-17, Shrey Bhatt wrote: > 2. Were there any security vulnerabilities reported for Apache Ant 1.7.0 > which could affect the application Yes, there have been. Please see https://ant.apache.org/security.html Stefan

Re: Queries regarding Apache Ant 1.7.0

2020-06-18 Thread Jaikiran Pai
x series of Ant. The binaries can be downloaded at https://ant.apache.org/bindownload.cgi -Jaikiran On 17/06/20 10:53 pm, Shrey Bhatt wrote: > Hello Team, > > This is regarding the library Apache Ant 1.7.0 version released earlier > under Apache Software. > > We are using th

Queries regarding Apache Ant 1.7.0

2020-06-17 Thread Shrey Bhatt
Hello Team, This is regarding the library Apache Ant 1.7.0 version released earlier under Apache Software. We are using the library in our application and would like to know the following: 1. Is the library Apache Ant 1.7.0 currently supported by your team? 2. Were there any security

Question Regarding Ant Build and Jspc Task (Tomcat JSPC, not ANT depricated JSPC)

2017-05-05 Thread Mohammed Manna
Hello, Firstly, thanks for allowing me to post on the user list forum. i hope to get useful information from you guys. I have configured my ant build job to precompile JSP files for my web application. below is the portion of taskdef ${java.home} ${env.JAVA_HOME}

Re: a simple question regarding condition if/unless

2012-05-21 Thread Matt Benson
ilar pattern: > > > > So, I have to go to the deep. Right now, I am using: > > >  ... > > > Same with "testA2" and "testA3". Is there are 10 of them, I have to add > unless="abc" 10 times? Can I add such condition in the target &quo

a simple question regarding condition if/unless

2012-05-21 Thread xsli2
t "test" only once? Thank you very much. -- View this message in context: http://ant.1045680.n5.nabble.com/a-simple-question-regarding-condition-if-unless-tp5713011.html Sent from the Ant - Users mailing list archive at Nabble.com. -

RE: Regarding exec task

2012-02-08 Thread Adam Bruss
: Wednesday, February 08, 2012 10:18 AM To: Ant Users List Subject: Re: Regarding exec task This sounds good, but won't it kill processes that wasn't started by my script too? From: Adam Bruss To: Ant Users List ; Vimil Saju Sent: Wednesday, February 8,

Re: Regarding exec task

2012-02-08 Thread Vimil Saju
This sounds good, but won't it kill processes that wasn't started by my script too? From: Adam Bruss To: Ant Users List ; Vimil Saju Sent: Wednesday, February 8, 2012 6:34 AM Subject: RE: Regarding exec task Set failonerror=false on the parent

RE: Regarding exec task

2012-02-08 Thread Adam Bruss
ailto:vimils...@yahoo.com] Sent: Tuesday, February 07, 2012 10:11 PM To: Ant Users List Subject: Regarding exec task Hi, I noticed that on windows, if I use the exec task to run a batch script which in turn starts other processes then if kill ant then the sub-processes created by the batch script

Regarding exec task

2012-02-07 Thread Vimil Saju
Hi, I noticed that on windows, if I use the exec task to run a batch script which in turn starts other processes then if kill ant then the sub-processes created by the batch script still continues to run. I did some research on google and found that the default java implementation of Process.de

Re: Question regarding UTF-8 and property files

2011-05-27 Thread Rob J
Ahhh, did some digging and figured it out! Apple OSX's java interpreter's default charset is MacRoman I modified bin/ant to add -Dfile.encoding=UTF-8 as an argument for the java interpreter, and it works fine now: hitman@bigdog ~/t/t/apache-ant-1.8.2$ bin/ant foo2 Buildfile: /Users/hitman/t/t/ap

Re: Question regarding UTF-8 and property files

2011-05-27 Thread Rob J
> The ? implies to me that your shell might be trying to display the UTF-8 > properly, but can't, so it shows the question mark. > > Instead of looking at the file with cat: > - Does the file have one byte for that mark, (that would be the question > mark) or 3? - You should be able to count ho

RE: Question regarding UTF-8 and property files

2011-05-27 Thread Echlin, Robert
o: Ant Users List > Subject: Re: Question regarding UTF-8 and property files > > Works for me: > > > > > encoding="iso-8859-1"/> > > > > > > > > foo: > [echo] [Test ế] > >

Re: Question regarding UTF-8 and property files

2011-05-27 Thread Rob J
On Fri, 27 May 2011, Scot P. Floess wrote: > Works for me: > > > > > > > > > > Hmm. Yup. I actually just went to a linux system and ran the exact same example using the exact same ant version and it works fine over there. The linux box is using the Sun

Re: Question regarding UTF-8 and property files

2011-05-27 Thread Alexandre Priou
t; >> Rob >> >> On Fri, 27 May 2011, Echlin, Robert wrote: >> >> Hi Rob, >>> Maybe you need to start the file with the Byte Order Mark? >>> This is apparently more likely if you are on Windows. >>> >>> http://en.wikipedia.org/wiki/U

Re: Question regarding UTF-8 and property files

2011-05-27 Thread Scot P. Floess
regarding UTF-8 and property files So I'm having an issue with UTF-8 and property files. Given the test build.xml file: and the file foo.properties: #foo.propert=Test ế foo.property=Test \u1EBF When I run ant (1.8.2) for this target and look in test.txt, I see: Test ?

Re: Question regarding UTF-8 and property files

2011-05-27 Thread Alexandre Priou
me too On Fri, May 27, 2011 at 8:05 PM, Rob J wrote: > On Fri, 27 May 2011, Alexandre Priou wrote: > > > no test it's the game > > Sorry, not following you there...? What do you mean? > > thanks, > rob > > - > To unsubscribe, e

Re: Question regarding UTF-8 and property files

2011-05-27 Thread Rob J
On Fri, 27 May 2011, Alexandre Priou wrote: > no test it's the game Sorry, not following you there...? What do you mean? thanks, rob - To unsubscribe, e-mail: user-unsubscr...@ant.apache.org For additional commands, e-mail: us

Re: Question regarding UTF-8 and property files

2011-05-27 Thread Alexandre Priou
no test it's the game On Fri, May 27, 2011 at 7:56 PM, Rob J wrote: > On Fri, 27 May 2011, Scot P. Floess wrote: > > > Try ISO-8859-1 as your encoding... Someone I work with was > > attempting to use property files with a similar issue (but directly > > within Java). He used the ISO-8859-1 enc

Re: Question regarding UTF-8 and property files

2011-05-27 Thread Rob J
On Fri, 27 May 2011, Scot P. Floess wrote: > Try ISO-8859-1 as your encoding... Someone I work with was > attempting to use property files with a similar issue (but directly > within Java). He used the ISO-8859-1 encoding and it fixed his > problem... No dice. I tried changing both the encodin

Re: Question regarding UTF-8 and property files

2011-05-27 Thread Rob J
n.wikipedia.org/wiki/UTF-8#Byte_order_mark > > Rob > > > > -Original Message- > > From: Rob J [mailto:r...@dcsportbikes.net] > > Sent: Friday, May 27, 2011 12:03 PM > > To: user@ant.apache.org > > Subject: Question regarding UTF-8 and property file

Re: Question regarding UTF-8 and property files

2011-05-27 Thread Scot P. Floess
Try ISO-8859-1 as your encoding... Someone I work with was attempting to use property files with a similar issue (but directly within Java). He used the ISO-8859-1 encoding and it fixed his problem... On Fri, 27 May 2011, Rob J wrote: So I'm having an issue with UTF-8 and property files.

RE: Question regarding UTF-8 and property files

2011-05-27 Thread Echlin, Robert
3 PM > To: user@ant.apache.org > Subject: Question regarding UTF-8 and property files > > So I'm having an issue with UTF-8 and property files. Given > the test build.xml file: > > > > > > > > > > and the file foo.proper

Question regarding UTF-8 and property files

2011-05-27 Thread Rob J
So I'm having an issue with UTF-8 and property files. Given the test build.xml file: and the file foo.properties: #foo.propert=Test ế foo.property=Test \u1EBF When I run ant (1.8.2) for this target and look in test.txt, I see: Test ? every time. It is not interpreting t

Re: Regarding GSoC

2011-02-22 Thread Stefan Bodewig
Hi, your question would probably better get addressed on the developer list (d...@ant.apache.org). On 2011-02-22, rukhsana afroz wrote: > I want to address the attention from the administrative people of this > group. Are you participating in GSoC program this year? It's unclear to me whether y

Regarding GSoC

2011-02-22 Thread rukhsana afroz
Hi, I want to address the attention from the administrative people of this group. Are you participating in GSoC program this year? If so, which part of this project, you want to enhance? If you could give me a little bit idea about that, it would be great help for me. I am very interested to work

Re: Questions regarding GUnzip and BUnzip2 extract methods.

2010-01-20 Thread Stefan Bodewig
On 2010-01-20, wrote: > I have a very specific question about some ant code, I hope this is the > correct place to post it. It is. > I have been using part of the ant project to unGzip and unBzip2 files as > I wanted a Java way of doing this and I stumbled across the ant classes > that implemen

Questions regarding GUnzip and BUnzip2 extract methods.

2010-01-20 Thread dan.badham
Hello there, I have a very specific question about some ant code, I hope this is the correct place to post it. I have been using part of the ant project to unGzip and unBzip2 files as I wanted a Java way of doing this and I stumbled across the ant classes that implement this. Anyway I was experi

Re: A Question regarding conditionals

2010-01-06 Thread Antoine Levy Lambert
Kamran Hameed wrote: Folks i have two questions 1. I want to check whether an environment variable is defined or not. e-g i want to check whether the variable JAVA_HOME is set or not. How can i do that. Currently the way i am doing that is : Hello Kamram, here is my suggested solution

A Question regarding conditionals

2010-01-03 Thread Kamran Hameed
Folks i have two questions 1. I want to check whether an environment variable is defined or not. e-g i want to check whether the variable JAVA_HOME is set or not. How can i do that. Currently the way i am doing that is : * // the line doing it* so in t

Re: Problem regarding adding antcall task to some target via JavaScript and script task

2009-10-19 Thread Christian Möller
Hi Stefan, Original-Nachricht > Von: Stefan Bodewig > On 2009-10-12, Christian Möller wrote: > > > > Hello from target 'init' > > > > > > > > > > > > > Hello from target 'test' > > > > > > > This is purposing the follwing: Adding execut

Re: Problem regarding adding antcall task to some target via JavaScript and script task

2009-10-15 Thread Stefan Bodewig
On 2009-10-12, Christian Möller wrote: > > Hello from target 'init' > > > > > > Hello from target 'test' > > > This is purposing the follwing: Adding execution of additional targets > (here "extra-pre-test" and "extra-post-test") to some other targets > (

Problem regarding adding antcall task to some target via JavaScript and script task

2009-10-12 Thread Christian Möller
Hi, I have a problem with the following build script: =

Re: Help needed regarding Java task

2009-08-27 Thread Gilbert Rebhan
Nadun Herath schrieb: ... > I have to run a Java program Called MiniJavaParser using different file > names as arguements several > times using Java Task. When it runs it gives the message > > "MiniJava program parsed successfully" or Encountered errors during > parse. > > I wan

Re: Help needed regarding Java task

2009-08-26 Thread Nadun Herath
iJava program parsed succesfully. Mind you there are number of Java tasks define in the build file. www.nadunh.blogspot.com From: Avlesh Singh To: Ant Users List Sent: Thursday, August 27, 2009 9:46:54 AM Subject: Re: Help needed regarding Java task As such

Re: Help needed regarding Java task

2009-08-26 Thread Avlesh Singh
___ > From: Avlesh Singh > To: Ant Users List > Sent: Thursday, August 27, 2009 9:25:21 AM > Subject: Re: Help needed regarding Java task > > See, if this usage helps: > > > > > > > > > > > > > > &

Re: Help needed regarding Java task

2009-08-26 Thread Nadun Herath
t.com From: Avlesh Singh To: Ant Users List Sent: Thursday, August 27, 2009 9:25:21 AM Subject: Re: Help needed regarding Java task See, if this usage helps: This is being used in the following manner - "ant search -Dkeyword=obama Cheers Avle

Re: Help needed regarding Java task

2009-08-26 Thread Avlesh Singh
See, if this usage helps: This is being used in the following manner - "ant search -Dkeyword=obama Cheers Avlesh On Thu, Aug 27, 2009 at 8:20 AM, Nadun Herath wrote: > I am new to apache Ant. > > Some part of my build.xml is like this. > > append

Help needed regarding Java task

2009-08-26 Thread Nadun Herath
I am new to apache Ant. Some part of my build.xml is like this. I have to run a Java program Called MiniJavaParser using different file names as arguements several times using Java Task. When it runs it gives t

Re: Query regarding "includesfile"

2009-06-03 Thread Stefan Bodewig
On 2009-06-03, wrote: > I am facing issue with includesfile . > It is not accepting wild chars in path of file name. Your observation is correct, includesfile expects a plain file name and doesn't support wildcards. Right now I can't come up with any way to use an unknown number of includesf

RE: Query regarding "includesfile"

2009-06-03 Thread Bhushan . Khardekar
It looks like I was not clear in explaining my issue. I am facing issue with includesfile . It is not accepting wild chars in path of file name. If I uses My-Deliverables\lib\mytech\files.txt then it works fine but when I use *\lib\mytech\files.txt it fails. Could you please suggest? Rega

RE: Query regarding "includesfile"

2009-06-03 Thread Martin Gainty
ous ne pouvons accepter aucune responsabilité pour le contenu fourni. > To: user@ant.apache.org > Subject: Query regarding "includesfile" > From: bhushan.kharde...@prudential.co.uk > Date: Wed, 3 Jun 2009 10:16:07 +0100 > > Hi , >

Query regarding "includesfile"

2009-06-03 Thread Bhushan . Khardekar
Hi , I am using Copy task to copy files to a staging directory files.txt : It contain

Re: newbie question regarding setting environment variables

2008-07-07 Thread Henning Bredel
> I expect that I have to set JAVA_HOME, but for the life of me I can not > figure out where or how. For a session you can type JAVA_HOME= Note that you have to set the path to your JDK, not the JRE. Setting the path permanent, you can alter your ~/.profile (in your /home/ dir). Type here at

RE: newbie question regarding setting environment variables

2008-07-07 Thread Frank D. Gunseor
04, 2008 1:29 PM To: Ant Users List Subject: Re: newbie question regarding setting environment variables Frank, can you give us the result of 'ant -diagnostics' or 'ant -diagnostics | grep tools' to see tools.jar is in your path if not, what is the result of 'echo

Re: newbie question regarding setting environment variables

2008-07-04 Thread supareno
Frank, can you give us the result of 'ant -diagnostics' or 'ant -diagnostics | grep tools' to see tools.jar is in your path if not, what is the result of 'echo $JAVA_HOME'? to set your JAVA_HOME: edit your bashrc file vi ~/.bashrc add these lines at the end your bashrc file ... PATH=//bin:

newbie question regarding setting environment variables

2008-07-04 Thread Frank Gunseor
I have ant install on Ubuntu 8.04. When I try to run ant I get an error message, "Unable to locate tools.jar, etc.". I expect that I have to set JAVA_HOME, but for the life of me I can not figure out where or how. I have checked the manual, the FAQ, etc. I guess I'm just being dense today. Can

Re: Seeking help regarding webinf nested element of war ant target.

2008-06-25 Thread Steve Loughran
kaprasi wrote: The war should include : WEB-INF/classes/*.class WEB-INF/lib/*.jar WEB-INF/jsp/*.jsp I am very well able to achieve first two. That's because war task has classes and lib as nested elements. And that puts classes and lib directories automatically into WEB-INF I am not able to p

Re: Seeking help regarding webinf nested element of war ant target.

2008-06-25 Thread Henning Bredel
> > > > > > > > try (untested) regards Henning signature.asc Description: This is a digitally signed message part.

Re: Seeking help regarding webinf nested element of war ant target.

2008-06-25 Thread kaprasi
s are supported as archives. What should I be doing? Thanks. -- View this message in context: http://www.nabble.com/Seeking-help-regarding-webinf-nested-element-of-war-ant-target.-tp18111936p18111962.html Sent from the Ant - Users mailing list archive at Nabbl

Seeking help regarding webinf nested element of war ant target.

2008-06-25 Thread kaprasi
s are supported as archives. What should I be doing? Thanks. -- View this message in context: http://www.nabble.com/Seeking-help-regarding-webinf-nested-element-of-war-ant-target.-tp18111936p18111936.html Sent from the Ant - Users mailing list archive at Nabble.com.

Re: Unexpected behavior regarding relative paths in - bug?

2008-02-12 Thread Gilles Scokart
Look at IVY-387 [1] and the related issues (and vote for it if you want). [1] https://issues.apache.org/jira/browse/IVY-387 Gilles 2008/2/12, Brown, Carlton <[EMAIL PROTECTED]>: > > I think I may have found a bug, can someone confirm this behavior for > me: > > > > It seems that the functional

Unexpected behavior regarding relative paths in - bug?

2008-02-12 Thread Brown, Carlton
I think I may have found a bug, can someone confirm this behavior for me: It seems that the functionality treats relative paths in an unexpected way. In the deliverpattern attribute, it appears that paths are resolved relative to the ${user.dir} system property. This is different from the u

AW: Regarding email change for ant

2007-11-20 Thread Jan.Materne
> > My old address is [EMAIL PROTECTED] > > And new address is [EMAIL PROTECTED] > > Send an email to > [EMAIL PROTECTED] > as well as [EMAIL PROTECTED], this > can be a single email with two recipients. Oh, the "from" adress is encoded in the "to"-adress ;) Jan

Re: Regarding email change for ant

2007-11-20 Thread Stefan Bodewig
On Tue, 20 Nov 2007, Srikrishna Parthasarathy <[EMAIL PROTECTED]> wrote: > My old address is [EMAIL PROTECTED] > And new address is [EMAIL PROTECTED] Send an email to [EMAIL PROTECTED] as well as [EMAIL PROTECTED], this can be a single email with two recipients. Stefan --

AW: Regarding email change for ant

2007-11-20 Thread Jan.Materne
> My old address is [EMAIL PROTECTED] > And new address is [EMAIL PROTECTED] > What is the best way ? Send an email to [EMAIL PROTECTED] from your old adress. Send another email to [EMAIL PROTECTED] from your new adress. Jan - T

RE: Regarding email change for ant

2007-11-20 Thread Srikrishna_Parthasarathy
My old address is [EMAIL PROTECTED] And new address is [EMAIL PROTECTED] What is the best way ? srikrishna -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 20, 2007 10:34 AM To: user@ant.apache.org Subject: AW: Regarding email change for ant

AW: Regarding email change for ant

2007-11-20 Thread Jan.Materne
> > Is it possible to change my ant news group from my one email address to > > my another email address . ? My new one > > yes, its easy, unsubscribe with your current address, and > resub on the > new one. If you dont have your old adress, have a look at http://ant.apache.org/mail.html on th

Re: Regarding email change for ant

2007-11-20 Thread Steve Loughran
[EMAIL PROTECTED] wrote: Is it possible to change my ant news group from my one email address to my another email address . ? My new one Is [EMAIL PROTECTED] yes, its easy, unsubscribe with your current address, and resub on the new one. -- Steve Loughran http://www.106

Regarding email change for ant

2007-11-20 Thread Srikrishna_Parthasarathy
Is it possible to change my ant news group from my one email address to my another email address . ? My new one Is [EMAIL PROTECTED] srikrishna

RE: help regarding ANT.

2007-10-11 Thread Ravishankar BV.
Hi all, Thanks for your help. The classpath problem is solved and is up and working. Thanks. Ravi. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 10, 2007 6:54 PM To: user@ant.apache.org Subject: AW: help regarding ANT. Its often

Re: help regarding ANT.

2007-10-10 Thread David Weintraub
What task is being called on line 222 of your build.xml file? What this is saying is that a class needed for a particular task cannot be found. It could be a missing *.jar file. I believe you'll find that you're trying to implement the "deploy" task of Tomcat. Since you're getting the classfile r

RE: help regarding ANT.

2007-10-10 Thread cknell
help after looking it over. -- Charles Knell [EMAIL PROTECTED] - email -Original Message- From: Ravishankar BV. <[EMAIL PROTECTED]> Sent: Wed, 10 Oct 2007 18:32:54 +0530 To: Subject: help regarding ANT. Hi all, I'm new to Apache and ANT (and even java too

AW: help regarding ANT.

2007-10-10 Thread Jan.Materne
n >-Ursprüngliche Nachricht- >Von: Ravishankar BV. [mailto:[EMAIL PROTECTED] >Gesendet: Mittwoch, 10. Oktober 2007 15:03 >An: user@ant.apache.org >Betreff: help regarding ANT. > >Hi all, > > > >I'm new to Apache and ANT (and even java tools). I&#x

help regarding ANT.

2007-10-10 Thread Ravishankar BV.
Hi all, I'm new to Apache and ANT (and even java tools). I'm purely into "C". So, sorry if this looks silly and trivial. I have a build.xml file and when I run: $ ant -f build.xml generate.html, I get an error: /build.xml:202: taskdef class org.apache.catalina.ant.DeployTask cann

Re: regarding path id

2007-08-08 Thread Peter Reilly
On 8/8/07, Anil Kumar pippalapalli <[EMAIL PROTECTED]> wrote: > hi mani, > > you can do this, > This will not work. The ** and * are for patterns - line includes="" and the element. The location attribute is a file name/path and not a pattern. Peter > this will take care of all jars in that fol

Re: regarding path id

2007-08-08 Thread Anil Kumar pippalapalli
hi mani, you can do this, this will take care of all jars in that folder and subfolders anil. On 8/8/07, Manivannan Palanichamy <[EMAIL PROTECTED]> wrote: > > Hi, > Actually, I add the jar files in classpath using the following way. > > > > > > > It looks bit tediou

Re: regarding path id

2007-08-07 Thread David Weintraub
You can use the element to define a path: You can limit files inside the directive too using and : The great advantage of this is that you can easily add new jars to your classpath by simply adding jar files into that directory. On 8/7/07, Mani

Re: regarding path id

2007-08-07 Thread Peter Reilly
On 8/7/07, Manivannan Palanichamy <[EMAIL PROTECTED]> wrote: > Hi, > Actually, I add the jar files in classpath using the following way. > > > > use: Peter > > > It looks bit tedious, since every jar file should be listed in the > pathelement tag. Ins

Re: regarding path id

2007-08-07 Thread Matt Benson
--- Manivannan Palanichamy <[EMAIL PROTECTED]> wrote: > Hi, > Actually, I add the jar files in classpath using the > following way. > > location="${resc}/mysql-connector-java-3.1.12-bin.jar"/> >location="${resc}/activation.jar"/> > > > > It looks bit tedious, since

regarding path id

2007-08-07 Thread Manivannan Palanichamy
Hi, Actually, I add the jar files in classpath using the following way. It looks bit tedious, since every jar file should be listed in the pathelement tag. Instead of doing this, is there anyway to specify a directory, containing all jar files? -- Manivannan.Palanich

Re: AW: Regarding .policy file

2007-07-23 Thread Sameer Borwankar
Thanks. i tried It worked. Thanks sameer - Original Message From: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> To: user@ant.apache.org Sent: Monday, July 23, 2007 3:05:46 PM Subject: AW: Regarding .policy file Try a nested element. extends (as the manual sais at the

AW: Regarding .policy file

2007-07-23 Thread Jan.Materne
Try a nested element. extends (as the manual sais at the beginning). Jan >-Ursprüngliche Nachricht- >Von: Sameer Borwankar [mailto:[EMAIL PROTECTED] >Gesendet: Montag, 23. Juli 2007 11:25 >An: Ant Users List >Betreff: Regarding .policy file > >Hi All, &g

Regarding .policy file

2007-07-23 Thread Sameer Borwankar
Hi All, In my folder structure, .policy file is present in root>application folder. After running the ANT script, i want this policy file in META-INF folder where application.xml file is lying. While creating EAR file, path for application.xml file is denoted as applxml = path Is there similar t

RE: need help regarding the sql query

2007-07-05 Thread RADEMAKERS Tanguy
, 2007 1:49 PM >To: user@ant.apache.org >Subject: need help regarding the sql query > >hi, > i have a sql query which returns the result as "complete" . >here i want to >use this result as a property to my taget. i mean based on >thi

need help regarding the sql query

2007-07-04 Thread Basha
hi, i have a sql query which returns the result as "complete" . here i want to use this result as a property to my taget. i mean based on this property i want run rest of things. thanks khadar

Regarding JSP compilation with Ant

2007-05-23 Thread Lokesh Jayaraman
Dear, I am using IBM Rational Application Developer 6.0. I need to find the deprecation methods used in JSP's of Web application. Can u help me to find deprecation methods used in JSP files. Let me inform if u know how to find deprecation methods used in JSP's For information: WebSphere 6.0 sup

AW: Query regarding working of Ant

2007-04-19 Thread Jan.Materne
[EMAIL PROTECTED] >Gesendet: Donnerstag, 19. April 2007 10:37 >An: Ant Users List >Betreff: RE: Query regarding working of Ant > > >Hi, > >-Original Message- >From: raj kanwal [mailto:[EMAIL PROTECTED] >Sent: Thursday, April 19, 2007 8:43 AM >To: user@a

RE: Query regarding working of Ant

2007-04-19 Thread Rebhan, Gilbert
Hi, -Original Message- From: raj kanwal [mailto:[EMAIL PROTECTED] Sent: Thursday, April 19, 2007 8:43 AM To: user@ant.apache.org Subject: Query regarding working of Ant >build.xml file not found. that's normal when running ant command without pointing to a file, i.e. C:\&g

Query regarding working of Ant

2007-04-19 Thread raj kanwal
I have installed Apache Ant1.7.0. When I run ant command it is giving error build.xml file not found..The files that r present in my directory Apache Ant are fetch.xml and get-m2.xml. When I try to run ant -buildfile fetch.xml it is giving an error - "import command not found" , similar is the er

Regarding

2007-03-15 Thread Brown, Carlton
If I have a property that contains the a fully qualified name of a class, in dotted notation, how can I use this property to reference a file path that has no dotted notation? I looked at the unpackage mapper, but that only re-maps actual files that are saved on disk with dotted notation. I looked

AW: Regarding : List the subdirectories in Directory

2007-02-26 Thread Jan.Materne
Jan >-Ursprüngliche Nachricht- >Von: Lokesh Jayaraman [mailto:[EMAIL PROTECTED] >Gesendet: Montag, 26. Februar 2007 07:24 >An: Ant Users List >Betreff: Regarding : List the subdirectories in Directory > >Hi , >How to get all subdirectories information from

Regarding : List the subdirectories in Directory

2007-02-25 Thread Lokesh Jayaraman
Hi , How to get all subdirectories information from base directory using ANT task. if you know anybody ,let me inform. By Lokesh

Regarding compile only valid java files, skipping uncompilable files

2007-02-25 Thread Lokesh Jayaraman
s including sub directory also. Kindly help me to solve problem Expecting your favouable reply regarding My Problem By Lokesh

Re: Regarding build.xml display in command prompt

2007-02-10 Thread Antoine Levy-Lambert
Hello Lokesh, try ant -quiet (do not know whether this will do what you want). you can also write your own logger class if you want to program in Java. see the running ant part of the documentation. http://ant.apache.org/ manual/running.html#options Antoine On Feb 10, 2007, at 4:40 AM, Lok

Regarding build.xml display in command prompt

2007-02-10 Thread Lokesh Jayaraman
hi, When i ran a build.xml using Ant i do not want to display the ant task in the output screen(command pormpt).Is any method or a way to do this... if so let me inform... Regards, Lokesh

RE: Question regarding -Xlint:unchecked

2006-12-15 Thread Chun Ji
hen it is explicitly specified . So the value ${src.dir} has different value for each build.xml file. Chun -Original Message- From: Antoine Levy-Lambert [mailto:[EMAIL PROTECTED] Sent: Sat 12/16/2006 4:12 AM To: Ant Users List Subject: Re: Question regarding -Xlint:unchecked He

Re: Question regarding -Xlint:unchecked

2006-12-15 Thread Antoine Levy-Lambert
Hello Chun Ji, please check the path that you pass in the dir attribute of the > invocation. Probably, it should be and not dir="${src.dir}" . You want this attribute to be the basedirectory of the build file that you invoke. Regards, Antoine On Dec 15, 2006, at 2:54 PM, Chun Ji wrote: I

Question regarding -Xlint:unchecked

2006-12-15 Thread Chun Ji
I have two build.xml used for my daily work. The first one has only one target, which is to compile the source code. For the second build.xml, there are a list of "targets", including a "target", that is to invoke the "compiling" target in the first build.xml. Here is part the my build.xml fil

RE: regarding ant build file using wlserver

2006-12-04 Thread Suchitha Koneru \(sukoneru\)
Can you start and stop the server , manually i.e. not from the ant target ? -Original Message- From: Arunasree manchala [mailto:[EMAIL PROTECTED] Sent: Monday, December 04, 2006 2:28 AM To: user@ant.apache.org Subject: regarding ant build file using wlserver hi , This ia arunasree. Iam

regarding ant build file using wlserver

2006-12-04 Thread Arunasree manchala
hi , This ia arunasree. Iam running the ant script to start the weblogic server. Iam using wlserver. I am getting the error,what like this. Server is started but immmediately is shutting down. *ERROR:* BUILD SUCCESSFUL Total time: 14 seconds [wlserver] [wlserver] [wlserver] > [w

Re: Question regarding recursive copy

2006-08-15 Thread Michael Bauroth
Strange ... works now !!! :) Don't know what it was. Thanx all of you. Regards Michael - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Question regarding recursive copy

2006-08-15 Thread Dominique Devienne
it copies the direct subfolders of src, but the content of the subsubfolders will be flattened. I doubt it. preserves the file hierarchy, unless an explicit is used. --DD PS: Your ** pattern is fine, although I prefer to use **/* myself. **/*.* will only copy files with an extension, an

RE: Question regarding recursive copy

2006-08-15 Thread Rebhan, Gilbert
: Tuesday, August 15, 2006 3:27 PM To: user@ant.apache.org Subject: Question regarding recursive copy Hi, I'm having the following problem: I want to make a recursive copy from a src to a dst folder within Eclipse. The old command copydir is deprecated and don't support the tag 'prese

RE: Question regarding recursive copy

2006-08-15 Thread David Corley \(AT/LMI\)
You should probably use "**/*.*" as the pattern. -Original Message- From: Michael Bauroth [mailto:[EMAIL PROTECTED] Sent: 15 August 2006 14:27 To: user@ant.apache.org Subject: Question regarding recursive copy Hi, I'm having the following problem: I want to make a recu

Question regarding recursive copy

2006-08-15 Thread Michael Bauroth
Hi, I'm having the following problem: I want to make a recursive copy from a src to a dst folder within Eclipse. The old command copydir is deprecated and don't support the tag 'preservelastmodified' like the copy command. But with the copy command I have the problem, that e.g. for it

Class Loading constraint in WSAD regarding Oracle

2006-06-18 Thread Asaf Mesika
Hi, I've written an Ant Listener which writes events to Oracle DB. When launching the script under WSAD 5.1.1 , the 2nd time, I get a class loading constraint error: java.lang.VerifyError: class loading constraint violated (class: oracle/jdbc/driver/OracleConnection method: unwrap()Loracle/jdbc

RE: regarding Ant

2006-03-24 Thread Anderson, Rob (Global Trade)
I like the MailLogger. -Rob A > -Original Message- > From: Manas_Das [mailto:[EMAIL PROTECTED] > Sent: Friday, March 24, 2006 5:40 AM > To: Ant Users List > Subject: regarding Ant > > Dear all, > I got the idea that ant should be used whenever we want >

  1   2   >