summaryrefslogtreecommitdiffstats
path: root/config-bundle
diff options
context:
space:
mode:
authorgjoranv <gv@oath.com>2017-09-13 16:32:48 +0200
committergjoranv <gv@oath.com>2017-09-14 15:09:20 +0200
commit4bcd94748034201f647301c456aa1dfecddb9659 (patch)
tree318879736524db4d7c711363c621d87ea70c1b63 /config-bundle
parent5ca40d533eabdb8fad2d0951285182b998aaf9df (diff)
Install net.jpountz.lz4:lz4 as a bundle.
- From vespajlib. - It must still be a compile scope dep in order to make it a transitive dep for dependents of vespajlib. (Important to allow using vespajlib as a library outside the jdisc container.) - Hence, lz4 is still on the bundle classpath, but the explicitly added Import-Package overrides the bundle classpath.
Diffstat (limited to 'config-bundle')
-rw-r--r--config-bundle/pom.xml13
1 files changed, 13 insertions, 0 deletions
diff --git a/config-bundle/pom.xml b/config-bundle/pom.xml
index 7121756ce68..922204a83ff 100644
--- a/config-bundle/pom.xml
+++ b/config-bundle/pom.xml
@@ -16,6 +16,13 @@
<groupId>com.yahoo.vespa</groupId>
<artifactId>config</artifactId>
<version>${project.version}</version>
+ <exclusions>
+ <exclusion>
+ <artifactId>lz4</artifactId>
+ <groupId>net.jpountz.lz4</groupId>
+ </exclusion>
+ </exclusions>
+
</dependency>
<dependency>
<groupId>com.yahoo.vespa</groupId>
@@ -52,6 +59,12 @@
<artifactId>vespajlib</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
+ <exclusions>
+ <exclusion>
+ <artifactId>lz4</artifactId>
+ <groupId>net.jpountz.lz4</groupId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
<groupId>com.yahoo.vespa</groupId>