aboutsummaryrefslogtreecommitdiffstats
path: root/documentapi-dependencies
diff options
context:
space:
mode:
authorgjoranv <gv@verizonmedia.com>2020-06-30 02:00:47 +0200
committergjoranv <gv@verizonmedia.com>2020-06-30 02:00:47 +0200
commit9a2a89d7d7fef5b426d82f290109fb67e8bc7fdf (patch)
tree1f6a725001aed13e3da83f80344616ac650949e1 /documentapi-dependencies
parentd696e207ac858da0e9c0b305a233ecdb2063d634 (diff)
Add a separate module for documentapi dependencies.
- Makes the poms maintainable. - Yields correct Import-Packages for container-documentapi
Diffstat (limited to 'documentapi-dependencies')
-rw-r--r--documentapi-dependencies/.gitignore3
-rw-r--r--documentapi-dependencies/OWNERS1
-rw-r--r--documentapi-dependencies/README.md6
-rw-r--r--documentapi-dependencies/pom.xml75
4 files changed, 85 insertions, 0 deletions
diff --git a/documentapi-dependencies/.gitignore b/documentapi-dependencies/.gitignore
new file mode 100644
index 00000000000..35f8acd14ce
--- /dev/null
+++ b/documentapi-dependencies/.gitignore
@@ -0,0 +1,3 @@
+documentapi-dependencies.iml
+target
+/pom.xml.build
diff --git a/documentapi-dependencies/OWNERS b/documentapi-dependencies/OWNERS
new file mode 100644
index 00000000000..3b2ba1ede81
--- /dev/null
+++ b/documentapi-dependencies/OWNERS
@@ -0,0 +1 @@
+gjoranv
diff --git a/documentapi-dependencies/README.md b/documentapi-dependencies/README.md
new file mode 100644
index 00000000000..35654dc24b2
--- /dev/null
+++ b/documentapi-dependencies/README.md
@@ -0,0 +1,6 @@
+<!-- Copyright Verizon Media. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. -->
+# Documentapi-dependencies
+
+Pom artifact that lists dependencies that are common between `documentapi` and
+`container-documentapi`. These dependencies are provided by the Jdisc container,
+but are needed in scope 'compile' for building standalone document clients.
diff --git a/documentapi-dependencies/pom.xml b/documentapi-dependencies/pom.xml
new file mode 100644
index 00000000000..6a48c7e9c71
--- /dev/null
+++ b/documentapi-dependencies/pom.xml
@@ -0,0 +1,75 @@
+<?xml version="1.0"?>
+<!-- Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. -->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>com.yahoo.vespa</groupId>
+ <artifactId>parent</artifactId>
+ <version>7-SNAPSHOT</version>
+ <relativePath>../parent/pom.xml</relativePath>
+ </parent>
+ <artifactId>documentapi-dependencies</artifactId>
+ <packaging>pom</packaging>
+ <version>7-SNAPSHOT</version>
+
+ <dependencies>
+
+ <dependency>
+ <groupId>com.yahoo.vespa</groupId>
+ <artifactId>annotations</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.yahoo.vespa</groupId>
+ <artifactId>component</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.yahoo.vespa</groupId>
+ <artifactId>config</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.yahoo.vespa</groupId>
+ <artifactId>config-lib</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.yahoo.vespa</groupId>
+ <artifactId>configdefinitions</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.yahoo.vespa</groupId>
+ <artifactId>document</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.yahoo.vespa</groupId>
+ <artifactId>jrt</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.yahoo.vespa</groupId>
+ <artifactId>messagebus</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.yahoo.vespa</groupId>
+ <artifactId>vdslib</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.yahoo.vespa</groupId>
+ <artifactId>vespajlib</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.yahoo.vespa</groupId>
+ <artifactId>yolean</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+
+ </dependencies>
+</project>