Changes for page JApplication
Last modified by Andrus Adamchik on 2006/12/10 12:40
From version 65.1
edited by Andrus Adamchik
on 2006/09/16 15:17
on 2006/09/16 15:17
Change comment:
There is no comment for this version
To version 66.1
edited by Andrus Adamchik
on 2006/09/16 13:55
on 2006/09/16 13:55
Change comment:
There is no comment for this version
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -23,10 +23,13 @@ 23 23 |jvm|Minimal version of the Java Virtual machine required.|no|mac 24 24 |jvmOptions|Optional parameters to pass to the JVM, such as memory settings, etc.|no|mac 25 25 |nsisHome|Location of NSIS installation. Ignored except on Windows.|no (default is "C:rogram FilesSIS")|windows 26 -|version|Product version string|no|mac 27 27 28 28 == Nested Elements == 29 29 29 +=== fileset === 30 + 31 +The [[FileSet>>http://ant.apache.org/manual/CoreTypes/fileset.html]] specifying Java classes and resources to be included in the application. 32 + 30 30 === lib === 31 31 32 32 The [[FileSet>>http://ant.apache.org/manual/CoreTypes/fileset.html]] specifying jar files to be included in the application. ... ... @@ -43,6 +43,7 @@ 43 43 44 44 {{noformat}} 45 45 <japplication name="MyApp" destDir="dist" mainClass="org.example.Main" os="windows"> 46 - <lib dir="lib" includes="**/*.jar"/> 49 + <fileset dir="${build}/classes"/> 50 + <lib dir-"lib" includes="**/*.jar"/> 47 47 </japplication> 48 48 {{/noformat}}