summaryrefslogtreecommitdiffstats
path: root/document
diff options
context:
space:
mode:
authorHarald Musum <musum@yahoo-inc.com>2017-09-14 17:16:03 +0200
committerGitHub <noreply@github.com>2017-09-14 17:16:03 +0200
commitc38b60dbed06f02113b836be655c58e2514165ee (patch)
tree7d0e1a50fc74b79e00a8018b54f5891164a9b737 /document
parentafd3b362a2756b5c6c25215c1e1e78d295693ac3 (diff)
Revert "Install net.jpountz.lz4:lz4 as a bundle."
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, 9 insertions, 0 deletions
diff --git a/document/pom.xml b/document/pom.xml
index ebfe284c08b..81b21487314 100644
--- a/document/pom.xml
+++ b/document/pom.xml
@@ -39,6 +39,10 @@
<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
new file mode 100644
index 00000000000..25c41288d47
--- /dev/null
+++ b/document/src/main/java/net/jpountz/lz4/package-info.java
@@ -0,0 +1,5 @@
+// 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;