Author: djencks Date: Wed Sep 15 11:46:04 2004 New Revision: 46127 Modified: geronimo/trunk/modules/maven-itest-plugin/plugin.jelly Log: test for empty rather than null property, since the property is set in plugin.properties
Modified: geronimo/trunk/modules/maven-itest-plugin/plugin.jelly ============================================================================== --- geronimo/trunk/modules/maven-itest-plugin/plugin.jelly (original) +++ geronimo/trunk/modules/maven-itest-plugin/plugin.jelly Wed Sep 15 11:46:04 2004 @@ -183,7 +183,7 @@ description="Copy any resources that must be present for the integration tests to run" prereqs="itest:prepare-filesystem"> - <j:if test="${maven.itest.skip != 'true' and context.getVariable('maven.itest.resources') != null}"> + <j:if test="${maven.itest.skip != 'true' and context.getVariable('maven.itest.resources') != ''}"> <ant:copy todir="${maven.itest.dest}"> <u:tokenize var="resources" delim=", ">${maven.itest.resources}</u:tokenize> <j:forEach var="resource" items="${resources}">