summaryrefslogtreecommitdiffstats
path: root/document
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 /document
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 'document')
-rw-r--r--document/pom.xml4
-rw-r--r--document/src/main/java/net/jpountz/lz4/package-info.java5
2 files changed, 0 insertions, 9 deletions
diff --git a/document/pom.xml b/document/pom.xml
index 81b21487314..ebfe284c08b 100644
--- a/document/pom.xml
+++ b/document/pom.xml
@@ -39,10 +39,6 @@
<scope>test</scope>
</dependency>
<dependency>
- <groupId>net.jpountz.lz4</groupId>
- <artifactId>lz4</artifactId>
- </dependency>
- <dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
diff --git a/document/src/main/java/net/jpountz/lz4/package-info.java b/document/src/main/java/net/jpountz/lz4/package-info.java
deleted file mode 100644
index 25c41288d47..00000000000
--- a/document/src/main/java/net/jpountz/lz4/package-info.java
+++ /dev/null
@@ -1,5 +0,0 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-@ExportPackage(version = @Version(major = 1, minor = 3, micro = 0))
-package net.jpountz.lz4;
-import com.yahoo.osgi.annotation.ExportPackage;
-import com.yahoo.osgi.annotation.Version;