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]