list library dependency for zstd/brotli like we do for XZ/lzma
Project: http://git-wip-us.apache.org/repos/asf/commons-compress/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-compress/commit/af0f6c83 Tree: http://git-wip-us.apache.org/repos/asf/commons-compress/tree/af0f6c83 Diff: http://git-wip-us.apache.org/repos/asf/commons-compress/diff/af0f6c83 Branch: refs/heads/master Commit: af0f6c83aabb7ffb1e8b85d2cc12d3ac1ed9c8b1 Parents: fb88389 Author: Stefan Bodewig <[email protected]> Authored: Sun May 6 12:31:21 2018 +0200 Committer: Stefan Bodewig <[email protected]> Committed: Sun May 6 12:31:21 2018 +0200 ---------------------------------------------------------------------- src/site/xdoc/examples.xml | 6 ++++++ 1 file changed, 6 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-compress/blob/af0f6c83/src/site/xdoc/examples.xml ---------------------------------------------------------------------- diff --git a/src/site/xdoc/examples.xml b/src/site/xdoc/examples.xml index a9154ab..80b52d7 100644 --- a/src/site/xdoc/examples.xml +++ b/src/site/xdoc/examples.xml @@ -513,6 +513,9 @@ public class ScatterSample { <subsection name="Brotli"> + <p>The implementation of this package is provided by the + <a href="https://github.com/google/brotli">Google Brotli dec</a> library.</p> + <p>Uncompressing a given Brotli compressed file (you would certainly add exception handling and make sure all streams get closed properly):</p> @@ -939,6 +942,9 @@ zIn.close(); <subsection name="Zstandard"> + <p>The implementation of this package is provided by the + <a href="https://github.com/luben/zstd-jni">Zstandard JNI</a> library.</p> + <p>Uncompressing a given Zstandard compressed file (you would certainly add exception handling and make sure all streams get closed properly):</p>
