Hi,
I need to fail a build if a certain file doesn't match a certain
multiline regex pattern. I tried somethink like
<fail>
<condition>
<resourcecount when="equal" count="0">
<restrict>
<fileset file="${file}"/>
<containsregexp expression="${regex}"/>
</restrict>
</resourcecount>
</condition>
</fail>
but unfortunately containsregexp doesn't perform multiline matches.
Specifying "(?m:${regex})" doesn't work.
If the <matches> condition would support resources, I could use that,
but it only supports the string attribute.
Any other ideas?
-- Niklas Matthies
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]