You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by dk...@apache.org on 2007/02/15 17:08:03 UTC

svn commit: r507977 - /maven/sandbox/resources/apache-jar-resource-bundle/src/main/resources/META-INF/NOTICE.vm

Author: dkulp
Date: Thu Feb 15 08:08:02 2007
New Revision: 507977

URL: http://svn.apache.org/viewvc?view=rev&rev=507977
Log:
Add ability to turn off the project text
Add ability to add text before/after the projects

Modified:
    maven/sandbox/resources/apache-jar-resource-bundle/src/main/resources/META-INF/NOTICE.vm

Modified: maven/sandbox/resources/apache-jar-resource-bundle/src/main/resources/META-INF/NOTICE.vm
URL: http://svn.apache.org/viewvc/maven/sandbox/resources/apache-jar-resource-bundle/src/main/resources/META-INF/NOTICE.vm?view=diff&rev=507977&r1=507976&r2=507977
==============================================================================
--- maven/sandbox/resources/apache-jar-resource-bundle/src/main/resources/META-INF/NOTICE.vm (original)
+++ maven/sandbox/resources/apache-jar-resource-bundle/src/main/resources/META-INF/NOTICE.vm Thu Feb 15 08:08:02 2007
@@ -9,6 +9,11 @@
 This product includes software developed at
 The Apache Software Foundation (http://www.apache.org/).
 
+#if($preProjectText)
+$preProjectText
+#end
+
+#if(!$noProjects)
 #foreach ( $project in $projects )
 This product includes/uses software, $project.name#if($project.url) ($project.url)#end
 #if( $project.organization.name )
@@ -22,3 +27,9 @@
 
 
 #end
+#end
+
+#if($postProjectText)
+$postProjectText
+#end
+