On Mon, 4 Sep 2006, Diego Chagastelles <[EMAIL PROTECTED]>
wrote:

> Hi, I´m an Ant beginner and I am trying to insert a javascript
> compression (using Dojo compression Tool "custom_rhino.jar") in my
> Ant Build File. I tried to execute the jar and generate the output
> file (the compressed javascript) using the "outputproperty"
> property.

outputproperty captures what custom_rhino.jar writes to System.out -
is this where your compressed JavaScript goes?

>    <property name="saida" location="${basedir}"></property>
> 
> <target name="teste" depends="depends" description="HemoSysWeb">
>         <java jar="WebContent/WEB-INF/lib/custom_rhino.jar"
>             input="WebContent/pessoa.js" output="error.js"
>             outputproperty="${saida}" fork="true">

The attribute expects the name of a property while ${saida} is its
value.  Does it work if you use outputproperty="saida"?

Stefan

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to