I want to conditionally turn things on and off in my
project.xml based on the value of a custom property.

For example, in my project.properties I defined a
property as follows:

include_tests = true

In my project.xml, I sould like to do something like
this:

...
<reports>
   ...
   <j:if test="${includes_tests=='true'}">
      <report>maven-junit-report-plugin</report>
   </j:if>
   ...
</reports>

It doesn't seem to work.  Any ideas?

- Doug

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

Reply via email to