Begin to work on version 2.1-SNAPSHOT

MPNSIS-14 : Set environment variables in system scope instead of user scope.

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@467542 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
aheritier 2006-10-25 02:54:53 +00:00
parent 50a62394f1
commit d375e42f2c
3 changed files with 6 additions and 1 deletions

View File

@ -22,7 +22,7 @@
<pomVersion>3</pomVersion>
<name>Maven NSIS Plugin</name>
<artifactId>maven-nsis-plugin</artifactId>
<currentVersion>2.0</currentVersion>
<currentVersion>2.1-SNAPSHOT</currentVersion>
<description>A plugin to generate Win32 installer programs using NSIS</description>
<shortDescription>NSIS Plugin for Maven</shortDescription>
<versions>

View File

@ -42,6 +42,8 @@
; macro for the image on the install screen
!include "BrandingImage.nsh"
!include "JDK.nsh"
; register environment variables in the system scope
!define ALL_USERS
!include "Environment.nsh"
; include project specific details

View File

@ -23,6 +23,9 @@
<author email="brett@apache.org">Brett Porter</author>
</properties>
<body>
<release version="2.1-SNAPSHOT" date="In SVN">
<action dev="aheritier" type="update" issue="MPNSIS-14">Set environment variables in system scope instead of user scope.</action>
</release>
<release version="2.0" date="2006-07-28">
<action dev="dion" type="fix" due-to="Matthias Kerkhoff" issue="MPNSIS-9">Use maven.nsis.build.dir instead of maven.dist.assembly.dir.</action>
<action dev="dion" type="fix" due-to="Matthias Kerkhoff" issue="MPNSIS-8">Fail when makensis fails.</action>