diff --git a/docs/jlink.html b/docs/jlink.html index ba249c26c..7da42aabe 100644 --- a/docs/jlink.html +++ b/docs/jlink.html @@ -98,7 +98,7 @@ The following will merge the entries in mergefoo.jar and mergebar.jar into out.jar. mac.jar and pc.jar will be added as single entries to out.jar.
-<jlink compress="false" outfile="out.jar"/>
+<jlink compress="false" outfile="out.jar">
    <mergefiles>
      <pathelement path="${build.dir}/mergefoo.jar"/>
      <pathelement path="${build.dir}/mergebar.jar"/>
@@ -116,7 +116,7 @@ Suppose the path for file foo.jar is build/tempbuild/foo.jar. The
 following example
 will provide the entry tempbuild/foo.jar in the out.jar.
 
-<jlink compress="false" outfile="out.jar"/>
+<jlink compress="false" outfile="out.jar">
    <mergefiles>
      <pathelement path="build/tempbuild"/>
    </mergefiles>
@@ -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,
 namely bar.class and barnone/myClass.zip
 
-<jlink compress="false" outfile="out.jar"/>
+<jlink compress="false" outfile="out.jar">
    <mergefiles>
      <pathelement path="build/tempbuild/foo.jar"/>
    </mergefiles>