Browse Source

Fixed type on jlink documentation.

Submitted by:	Steve Zindel <steve.zindel@semrev.ch>


git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@268060 13f79535-47bb-0310-9956-ffa450edef68
master
Stefan Bodewig 25 years ago
parent
commit
a063472791
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      docs/jlink.html

+ 3
- 3
docs/jlink.html View File

@@ -98,7 +98,7 @@ The following will merge the entries in mergefoo.jar and mergebar.jar
into out.jar. into out.jar.
mac.jar and pc.jar will be added as single entries to out.jar. mac.jar and pc.jar will be added as single entries to out.jar.
<pre> <pre>
&lt;jlink compress=&quot;false&quot; outfile=&quot;out.jar&quot;/&gt;
&lt;jlink compress=&quot;false&quot; outfile=&quot;out.jar&quot;&gt;
&lt;mergefiles&gt; &lt;mergefiles&gt;
&lt;pathelement path=&quot;${build.dir}/mergefoo.jar&quot;/&gt; &lt;pathelement path=&quot;${build.dir}/mergefoo.jar&quot;/&gt;
&lt;pathelement path=&quot;${build.dir}/mergebar.jar&quot;/&gt; &lt;pathelement path=&quot;${build.dir}/mergebar.jar&quot;/&gt;
@@ -116,7 +116,7 @@ Suppose the path for file foo.jar is build/tempbuild/foo.jar. The
following example following example
will provide the entry tempbuild/foo.jar in the out.jar. will provide the entry tempbuild/foo.jar in the out.jar.
<pre> <pre>
&lt;jlink compress=&quot;false&quot; outfile=&quot;out.jar&quot;/&gt;
&lt;jlink compress=&quot;false&quot; outfile=&quot;out.jar&quot;&gt;
&lt;mergefiles&gt; &lt;mergefiles&gt;
&lt;pathelement path=&quot;build/tempbuild&quot;/&gt; &lt;pathelement path=&quot;build/tempbuild&quot;/&gt;
&lt;/mergefiles&gt; &lt;/mergefiles&gt;
@@ -126,7 +126,7 @@ will provide the entry tempbuild/foo.jar in the out.jar.
However, the next example would result in two top-level entries in out.jar, However, the next example would result in two top-level entries in out.jar,
namely bar.class and barnone/myClass.zip namely bar.class and barnone/myClass.zip
<pre> <pre>
&lt;jlink compress=&quot;false&quot; outfile=&quot;out.jar&quot;/&gt;
&lt;jlink compress=&quot;false&quot; outfile=&quot;out.jar&quot;&gt;
&lt;mergefiles&gt; &lt;mergefiles&gt;
&lt;pathelement path=&quot;build/tempbuild/foo.jar&quot;/&gt; &lt;pathelement path=&quot;build/tempbuild/foo.jar&quot;/&gt;
&lt;/mergefiles&gt; &lt;/mergefiles&gt;


Loading…
Cancel
Save