You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by bo...@apache.org on 2018/06/19 15:18:27 UTC

commons-compress git commit: COMPRESS-456 make optional dependencies explicit

Repository: commons-compress
Updated Branches:
  refs/heads/master f5571df06 -> 8ed5daaad


COMPRESS-456 make optional dependencies explicit


Project: http://git-wip-us.apache.org/repos/asf/commons-compress/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-compress/commit/8ed5daaa
Tree: http://git-wip-us.apache.org/repos/asf/commons-compress/tree/8ed5daaa
Diff: http://git-wip-us.apache.org/repos/asf/commons-compress/diff/8ed5daaa

Branch: refs/heads/master
Commit: 8ed5daaadf51b7528df4555f4016d6e10140a721
Parents: f5571df
Author: Stefan Bodewig <bo...@apache.org>
Authored: Tue Jun 19 17:16:29 2018 +0200
Committer: Stefan Bodewig <bo...@apache.org>
Committed: Tue Jun 19 17:16:29 2018 +0200

----------------------------------------------------------------------
 pom.xml | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-compress/blob/8ed5daaa/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 66afcfe..f85a178 100644
--- a/pom.xml
+++ b/pom.xml
@@ -50,7 +50,13 @@ Brotli, Zstandard and ar, cpio, jar, tar, zip, dump, 7z, arj.
 
     <commons.manifestlocation>${project.build.outputDirectory}/META-INF</commons.manifestlocation>
     <commons.manifestfile>${commons.manifestlocation}/MANIFEST.MF</commons.manifestfile>
-    <commons.osgi.import>*;resolution:=optional</commons.osgi.import>
+    <commons.osgi.import>
+      org.tukaani.xz;resolution:=optional,
+      org.brotli.dec;resolution:=optional,
+      com.github.luben.zstd;resolution:=optional,
+      javax.crypto.*;resolution:=optional,
+      *
+    </commons.osgi.import>
 
     <!-- only show issues of the current version -->
     <commons.changes.onlyCurrentVersion>true</commons.changes.onlyCurrentVersion>