You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cayenne.apache.org by aa...@apache.org on 2006/08/07 05:44:39 UTC

svn commit: r429235 - in /incubator/cayenne/sandbox/nsis-test: ./ build.xml lib/ lib/nsisant-1.2.jar

Author: aadamchik
Date: Sun Aug  6 20:44:38 2006
New Revision: 429235

URL: http://svn.apache.org/viewvc?rev=429235&view=rev
Log:
adding nsisant task - the task is GPL'd but we don't distribute any parts of it, so this should be ok

Added:
    incubator/cayenne/sandbox/nsis-test/build.xml
    incubator/cayenne/sandbox/nsis-test/lib/
    incubator/cayenne/sandbox/nsis-test/lib/nsisant-1.2.jar   (with props)
Modified:
    incubator/cayenne/sandbox/nsis-test/   (props changed)

Propchange: incubator/cayenne/sandbox/nsis-test/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Sun Aug  6 20:44:38 2006
@@ -0,0 +1,2 @@
+
+*.exe

Added: incubator/cayenne/sandbox/nsis-test/build.xml
URL: http://svn.apache.org/viewvc/incubator/cayenne/sandbox/nsis-test/build.xml?rev=429235&view=auto
==============================================================================
--- incubator/cayenne/sandbox/nsis-test/build.xml (added)
+++ incubator/cayenne/sandbox/nsis-test/build.xml Sun Aug  6 20:44:38 2006
@@ -0,0 +1,16 @@
+<project default="nsis">
+	<path id="nsispath">
+		<fileset dir="lib" includes="*.jar" />
+	</path>
+
+	<target name="clean">
+		<delete>
+			<fileset dir="${basedir}" includes="*.exe" />
+		</delete>
+	</target>
+
+	<target name="nsis">
+		<taskdef name="nsis" classname="net.sf.nsisant.Task" classpathref="nsispath" />
+		<nsis script="cayenne-modeler.nsi" path="C:/Program Files/NSIS"/>
+	</target>
+</project>
\ No newline at end of file

Added: incubator/cayenne/sandbox/nsis-test/lib/nsisant-1.2.jar
URL: http://svn.apache.org/viewvc/incubator/cayenne/sandbox/nsis-test/lib/nsisant-1.2.jar?rev=429235&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/cayenne/sandbox/nsis-test/lib/nsisant-1.2.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream