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

svn commit: r534665 - in /maven/maven-1/plugins/trunk/nsis: src/plugin-resources/templates/mui-setup.jelly src/plugin-resources/templates/setup.jelly xdocs/changes.xml

Author: aheritier
Date: Wed May  2 17:25:09 2007
New Revision: 534665

URL: http://svn.apache.org/viewvc?view=rev&rev=534665
Log:
Add directories ${maven.nsis.src}, ${maven.build.dir}, and ${plugin.resources} to search NSIS plugins.

Modified:
    maven/maven-1/plugins/trunk/nsis/src/plugin-resources/templates/mui-setup.jelly
    maven/maven-1/plugins/trunk/nsis/src/plugin-resources/templates/setup.jelly
    maven/maven-1/plugins/trunk/nsis/xdocs/changes.xml

Modified: maven/maven-1/plugins/trunk/nsis/src/plugin-resources/templates/mui-setup.jelly
URL: http://svn.apache.org/viewvc/maven/maven-1/plugins/trunk/nsis/src/plugin-resources/templates/mui-setup.jelly?view=diff&rev=534665&r1=534664&r2=534665
==============================================================================
--- maven/maven-1/plugins/trunk/nsis/src/plugin-resources/templates/mui-setup.jelly (original)
+++ maven/maven-1/plugins/trunk/nsis/src/plugin-resources/templates/mui-setup.jelly Wed May  2 17:25:09 2007
@@ -40,11 +40,17 @@
 <util:available file="${maven.nsis.src}">
 ; add project source onto the include list
 !addincludedir "${maven.nsis.src}"
+; Directory to search NSIS plugins
+!addplugindir "${maven.nsis.src}"
 </util:available>
 ; add generated files onto the include list
 !addincludedir "${maven.build.dir}"
+; Directory to search NSIS plugins
+!addplugindir "${maven.build.dir}"
 ; add plugin supplied files onto the include list
 !addincludedir "${plugin.resources}"
+; Directory to search NSIS plugins
+!addplugindir "${plugin.resources}"
 
 ; macro to check if the jdk is installed
 !include "JDK.nsh"

Modified: maven/maven-1/plugins/trunk/nsis/src/plugin-resources/templates/setup.jelly
URL: http://svn.apache.org/viewvc/maven/maven-1/plugins/trunk/nsis/src/plugin-resources/templates/setup.jelly?view=diff&rev=534665&r1=534664&r2=534665
==============================================================================
--- maven/maven-1/plugins/trunk/nsis/src/plugin-resources/templates/setup.jelly (original)
+++ maven/maven-1/plugins/trunk/nsis/src/plugin-resources/templates/setup.jelly Wed May  2 17:25:09 2007
@@ -42,11 +42,17 @@
 <util:available file="${maven.nsis.src}">
 ; add project source onto the include list
 !addincludedir "${maven.nsis.src}"
+; Directory to search NSIS plugins
+!addplugindir "${maven.nsis.src}"
 </util:available>
 ; add generated files onto the include list
 !addincludedir "${maven.build.dir}"
+; Directory to search NSIS plugins
+!addplugindir "${maven.build.dir}"
 ; add plugin supplied files onto the include list
 !addincludedir "${plugin.resources}"
+; Directory to search NSIS plugins
+!addplugindir "${plugin.resources}"
 
 ; macro for the image on the install screen
 !include "BrandingImage.nsh"

Modified: maven/maven-1/plugins/trunk/nsis/xdocs/changes.xml
URL: http://svn.apache.org/viewvc/maven/maven-1/plugins/trunk/nsis/xdocs/changes.xml?view=diff&rev=534665&r1=534664&r2=534665
==============================================================================
--- maven/maven-1/plugins/trunk/nsis/xdocs/changes.xml (original)
+++ maven/maven-1/plugins/trunk/nsis/xdocs/changes.xml Wed May  2 17:25:09 2007
@@ -25,6 +25,7 @@
   </properties>
   <body>
     <release version="2.1-SNAPSHOT" date="In SVN">
+      <action dev="aheritier" type="update">Add directories ${maven.nsis.src}, ${maven.build.dir}, and ${plugin.resources} to search NSIS plugins.</action>
       <action dev="aheritier" type="add" issue="MPNSIS-15">Add a new template using MODERN_UI macros for a better Look and Feel.</action>
       <action dev="aheritier" type="add" issue="MPNSIS-13">The script "remove-shortcuts.nsh" can be used to remove shortcuts created in "startmenu-shortcuts.nsh" and "desktop-shortcuts.nsh".</action>
       <action dev="aheritier" type="update">Set compress options (force/lzma).</action>