Changes for page JApplication

Last modified by Andrus Adamchik on 2006/12/10 12:40

From version 63.1
edited by Andrus Adamchik
on 2006/09/16 15:06
Change comment: There is no comment for this version
To version 66.1
edited by Andrus Adamchik
on 2006/09/16 13:55
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -26,6 +26,10 @@
26 26  
27 27  == Nested Elements ==
28 28  
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 +
29 29  === lib ===
30 30  
31 31  The [[FileSet>>http://ant.apache.org/manual/CoreTypes/fileset.html]] specifying jar files to be included in the application.
... ... @@ -42,6 +42,7 @@
42 42  
43 43  {{noformat}}
44 44  <japplication name="MyApp" destDir="dist" mainClass="org.example.Main" os="windows">
45 - <lib dir="lib" includes="**/*.jar"/>
49 + <fileset dir="${build}/classes"/>
50 + <lib dir-"lib" includes="**/*.jar"/>
46 46  </japplication>
47 47  {{/noformat}}