This is an automated email from the ASF dual-hosted git repository.
dkulp pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/avro.git
The following commit(s) were added to refs/heads/master by this push:
new 46d2c8b Excluded com.google.common* packages from OSGi import, as the contents are
shaded into the final jar therefore the OSGi bundle does not need to import these packages
46d2c8b is described below
commit 46d2c8b5da67b87f8f427140cb6964c3125c84cb
Author: Arnoud Glimmerveen <arnoud@glimmerveen.org>
AuthorDate: Thu Aug 9 21:46:47 2018 +0200
Excluded com.google.common* packages from OSGi import, as the contents are shaded into
the final jar therefore the OSGi bundle does not need to import these packages
---
lang/java/avro/pom.xml | 1 +
1 file changed, 1 insertion(+)
diff --git a/lang/java/avro/pom.xml b/lang/java/avro/pom.xml
index bf12ebb..eff144a 100644
--- a/lang/java/avro/pom.xml
+++ b/lang/java/avro/pom.xml
@@ -37,6 +37,7 @@
<properties>
<osgi.import>
!org.apache.avro*,
+ !com.google.common*,
com.thoughtworks.paranamer,
org.codehaus.jackson*,
org.xerial.snappy;resolution:=optional,
|