Return-Path: Delivered-To: apmail-ant-user-archive@www.apache.org Received: (qmail 89717 invoked from network); 25 May 2004 10:23:49 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 25 May 2004 10:23:49 -0000 Received: (qmail 61256 invoked by uid 500); 25 May 2004 10:24:13 -0000 Delivered-To: apmail-ant-user-archive@ant.apache.org Received: (qmail 61126 invoked by uid 500); 25 May 2004 10:24:12 -0000 Mailing-List: contact user-help@ant.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Ant Users List" Reply-To: "Ant Users List" Delivered-To: mailing list user@ant.apache.org Received: (qmail 61087 invoked by uid 98); 25 May 2004 10:24:12 -0000 Received: from vinod.nayak@iflexsolutions.com by hermes.apache.org by uid 82 with qmail-scanner-1.20 (clamuko: 0.70. Clear:RC:0(202.144.91.162):. Processed in 1.556789 secs); 25 May 2004 10:24:12 -0000 X-Qmail-Scanner-Mail-From: vinod.nayak@iflexsolutions.com via hermes.apache.org X-Qmail-Scanner: 1.20 (Clear:RC:0(202.144.91.162):. Processed in 1.556789 secs) Received: from unknown (HELO relay2.iflexsolutions.com) (202.144.91.162) by hermes.apache.org with SMTP; 25 May 2004 10:24:10 -0000 Received: from fmgrt.rt.i-flex.com (pppserver [192.168.50.2]) by relay2.iflexsolutions.com (8.12.3/8.12.3) with ESMTP id i4PFoubv018950 for ; Tue, 25 May 2004 15:50:56 GMT Received: from fmgrt.rt.i-flex.com ([192.168.50.2]) by fmgrt.rt.i-flex.com with Microsoft SMTPSVC(5.0.2195.6713); Tue, 25 May 2004 15:57:04 +0530 Received: from fmg-op.opal.i-flex.com ([169.165.63.11]) by fmgrt.rt.i-flex.com with Microsoft SMTPSVC(5.0.2195.6713); Tue, 25 May 2004 15:57:03 +0530 X-MimeOLE: Produced By Microsoft Exchange V6.0.6487.1 content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Subject: RE: UpperCase or similar task Date: Tue, 25 May 2004 15:57:02 +0530 Message-ID: <4421DECD1639A149826D84B0F3EE8F1F0825ED8E@fmg-op.opal.i-flex.com> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: UpperCase or similar task Thread-Index: AcRCQoWYvAI461J9Tu6l0YwUgSPWkAAACkEA From: To: X-OriginalArrivalTime: 25 May 2004 10:27:03.0882 (UTC) FILETIME=[D26C8AA0:01C44242] X-Spam-Rating: hermes.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N I have bsf.jar in $ANT_HOME/lib -----Original Message----- From: Ivan Ivanov [mailto:rambiusparkisanius@yahoo.com] Sent: Tuesday, May 25, 2004 3:50 PM To: Ant Users List Subject: RE: UpperCase or similar task Hi, Do you have BSF[1] in $ANT_HOME/lib (or in $HOME/.ant/lib)? According to [2] bsf.jar is needed by scripts tasks. HTH Ivan [1]http://jakarta.apache.org/bsf/ [2]http://ant.apache.org/manual/install.html#librarydependencies --- vinod.nayak@iflexsolutions.com wrote: > Hi Jan, >=20 > Could you please help me in this.. >=20 > classname=3D"org.apache.tools.ant.taskdefs.optional.script.ScriptDef" > /> >=20 > language=3D"javascript"> > > =20 > project.setProperty("bean-name",attributes.get("bean-set")); > >=20 > > param=3D"ebean-set"> > > > > > > >=20 > after calling the 'EntityBeans' target i am getting > this error. >=20 > EntityBeans: > [echo] Rco >=20 > BUILD FAILED > java.lang.NoSuchMethodError >=20 > This is my ant classpath. > ANT_CLASSPATH=3D$ANT_HOME/lib/ant.jar:$ANT_HOME/lib/ant-launcher.jar:$ANT= _HOME/lib/xercesImpl.jar:$ANT_HOME/lib/xml-apis.jar:$ANT_HOME/lib/js.jar:= $ANT_HOME/lib/bsf.jar:$ANT_HOME/lib/ant-contrib.jar:$ANT_HOME/lib/ant-apa= che-bsf.jar:$JAVA_HOME/lib/tools.jar >=20 > Thanks in advance, > Vinod. >=20 > -----Original Message----- > From: Jan.Materne@rzf.fin-nrw.de > [mailto:Jan.Materne@rzf.fin-nrw.de] > Sent: Tuesday, May 25, 2004 2:40 PM > To: user@ant.apache.org > Subject: RE: UpperCase or similar task >=20 >=20 > There is no task. >=20 > But you can use the java.lang.String.toUpperCase() > method: >=20 > > > > =20 > project.setNewProperty(attributes.get("property"), > attributes.get("value").toUpperCase()); > >=20 > > one =3D ${one} >=20 > > one =3D ${one} >=20 > > two =3D ${two} >=20 > [echo] one =3D ONE > [echo] one =3D ONE <----- properties are immutable > (therefore use of > set_New_Property() ) > [echo] two =3D TWO >=20 >=20 > Jan >=20 > > -----Original Message----- > > From: skalsky@oksystem.cz > [mailto:skalsky@oksystem.cz] > > Sent: Tuesday, May 25, 2004 10:53 AM > > To: user@ant.apache.org > > Subject: UpperCase or similar task > >=20 > >=20 > > Hello there, > > I have a problem with strings in ANT. Is there > any task=20 > > to make upperCase (or lowerCase) of string in ANT > ? I can't=20 > > find anything in the apache.org :( > >=20 > > Thanx 4 your help. > > Milan > >=20 > >=20 > > > --------------------------------------------------------------------- > > To unsubscribe, e-mail: > user-unsubscribe@ant.apache.org > > For additional commands, e-mail: > user-help@ant.apache.org > >=20 >=20 > --------------------------------------------------------------------- > To unsubscribe, e-mail: > user-unsubscribe@ant.apache.org > For additional commands, e-mail: > user-help@ant.apache.org >=20 =09 =09 __________________________________ Do you Yahoo!? Friends. Fun. Try the all-new Yahoo! Messenger. http://messenger.yahoo.com/=20 --------------------------------------------------------------------- To unsubscribe, e-mail: user-unsubscribe@ant.apache.org For additional commands, e-mail: user-help@ant.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: user-unsubscribe@ant.apache.org For additional commands, e-mail: user-help@ant.apache.org