Yes, I have bsf and jython.jar as dependencies. I am able to do a script using the beanshell (jelly:beanshell) tag but don't know how to do the same with jelly:bsf and jython.
thanks in advance Dominic -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 18, 2003 11:09 PM To: Turbine Maven Users List Subject: Re: jelly:bsf tags and maven Did you add BSF and it's required jar files as <dependencies> in your project.xml? -- dIon Gillard, Multitask Consulting Blog: http://www.freeroller.net/page/dion/Weblog Work: http://www.multitask.com.au "Dominic Sisneros" <[EMAIL PROTECTED]> wrote on 19/02/2003 05:04:44 PM: > Does anyone know how to use bsf with Maven. Specifically, I want to use > jython > > Example maven > > <project > xmlns:j="jelly:core" > xmlns:m="jelly:maven" > xmlns:b="jelly:bsf"> > > j:set var="foo.bar" value="hello"/> > > > > > <goal name="mytest"> > <b:jython><![CDATA[ > print "hello world" > context.setVariable("foo.bar", "worked"); > </b:jython> > > <echo>${foo.bar}</echo> > </goal> > > ------------ > > outputs > mytest: > <jython:jython>print "foo.bar" > context.setVariable("foo.bar","worked");</jython:jython> [echo] hello > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
