fix package name parameter for help generation

git-svn-id: https://svn.apache.org/repos/asf/maven/plugin-tools/branches/MPLUGIN-189@1337278 13f79535-47bb-0310-9956-ffa450edef68
master
Olivier Lamy 2012-05-11 16:46:13 +00:00
parent 73885abdbc
commit 643c8de61c
2 changed files with 3 additions and 3 deletions

View File

@ -23,7 +23,7 @@ under the License.
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.maven.its.plugin</groupId>
<artifactId>help</artifactId>
<artifactId>help-package</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>maven-plugin</packaging>

View File

@ -1,5 +1,5 @@
#if ($helpPackageName.length>0)
package ${helpPackageName};
#if ($helpPackageName.length()>0)
package ${helpPackageName};
#end
import org.apache.maven.plugin.AbstractMojo;