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>
114
114
115
115
< p > This element is optional. If specified, the base directory of the fileset must point to the
116
116
root 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 >
121
123
122
124
< p > If this element is omitted, a Java runtime environment will not be copied into the generated
123
125
bundle, 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 {
139
139
});
140
140
141
141
runtime .appendExcludes (new String [] {
142
+ "bin/" ,
142
143
"jre/bin/"
143
144
});
144
145
}
You can’t perform that action at this time.
0 commit comments