File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed
src/com/oracle/appbundler Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -114,10 +114,12 @@ <h4>runtime</h4>
114114
115115< p > This element is optional. If specified, the base directory of the fileset must point to the
116116root directory of a valid Java runtime environment. The contents of the runtime will be copied to
117- the < tt > Contents/PlugIns/</ tt > folder of the generated application bundle. By default, only the
118- contents of the < tt > jre/</ tt > directory (minus < tt > jre/bin/</ tt > ) will be included in the bundled
119- application. Additional content can be included or excluded using nested
120- < code > <include></ code > and < code > <exclude></ code > elements, respectively.</ p >
117+ the < tt > Contents/PlugIns/</ tt > folder of the generated application bundle.</ p >
118+
119+ < p > By default, only the contents of the < tt > jre/</ tt > directory will be included with the bundled
120+ application. All executable content (i.e. < tt > bin/</ tt > , < tt > jre/bin/</ tt > ) is excluded. Additional
121+ content can be included or excluded using nested < code > <include></ code > and
122+ < code > <exclude></ code > elements, respectively.</ p >
121123
122124< p > If this element is omitted, a Java runtime environment will not be copied into the generated
123125bundle, and target systems must have a shared JRE installed in
Original file line number Diff line number Diff line change @@ -139,6 +139,7 @@ public void addConfiguredRuntime(FileSet runtime) throws BuildException {
139139 });
140140
141141 runtime .appendExcludes (new String [] {
142+ "bin/" ,
142143 "jre/bin/"
143144 });
144145 }
You can’t perform that action at this time.
0 commit comments