You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ol...@apache.org on 2012/05/11 18:46:14 UTC

svn commit: r1337278 - in /maven/plugin-tools/branches/MPLUGIN-189: maven-plugin-plugin/src/it/help-package/pom.xml maven-plugin-tools-api/src/main/resources/help-class-source.vm

Author: olamy
Date: Fri May 11 16:46:13 2012
New Revision: 1337278

URL: http://svn.apache.org/viewvc?rev=1337278&view=rev
Log:
fix package name parameter for help generation

Modified:
    maven/plugin-tools/branches/MPLUGIN-189/maven-plugin-plugin/src/it/help-package/pom.xml
    maven/plugin-tools/branches/MPLUGIN-189/maven-plugin-tools-api/src/main/resources/help-class-source.vm

Modified: maven/plugin-tools/branches/MPLUGIN-189/maven-plugin-plugin/src/it/help-package/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugin-tools/branches/MPLUGIN-189/maven-plugin-plugin/src/it/help-package/pom.xml?rev=1337278&r1=1337277&r2=1337278&view=diff
==============================================================================
--- maven/plugin-tools/branches/MPLUGIN-189/maven-plugin-plugin/src/it/help-package/pom.xml (original)
+++ maven/plugin-tools/branches/MPLUGIN-189/maven-plugin-plugin/src/it/help-package/pom.xml Fri May 11 16:46:13 2012
@@ -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>
 

Modified: maven/plugin-tools/branches/MPLUGIN-189/maven-plugin-tools-api/src/main/resources/help-class-source.vm
URL: http://svn.apache.org/viewvc/maven/plugin-tools/branches/MPLUGIN-189/maven-plugin-tools-api/src/main/resources/help-class-source.vm?rev=1337278&r1=1337277&r2=1337278&view=diff
==============================================================================
--- maven/plugin-tools/branches/MPLUGIN-189/maven-plugin-tools-api/src/main/resources/help-class-source.vm (original)
+++ maven/plugin-tools/branches/MPLUGIN-189/maven-plugin-tools-api/src/main/resources/help-class-source.vm Fri May 11 16:46:13 2012
@@ -1,5 +1,5 @@
-#if ($helpPackageName.length>0)
-  package ${helpPackageName};
+#if ($helpPackageName.length()>0)
+package ${helpPackageName};
 #end
 
 import org.apache.maven.plugin.AbstractMojo;