summaryrefslogtreecommitdiffstats
path: root/container-documentapi/pom.xml
diff options
context:
space:
mode:
authorgjoranv <gv@verizonmedia.com>2020-06-29 18:33:40 +0200
committergjoranv <gv@verizonmedia.com>2020-06-30 00:04:20 +0200
commit96c22197e668850b887c7cdda05ee5130bee5cb9 (patch)
treef49acdec5ab80eeaa56a80cde72bddc5bca0982a /container-documentapi/pom.xml
parentbb7d188e04ff44318906dfa9ede5b532409ebf9f (diff)
Add container-documentapi module.
Diffstat (limited to 'container-documentapi/pom.xml')
-rw-r--r--container-documentapi/pom.xml57
1 files changed, 57 insertions, 0 deletions
diff --git a/container-documentapi/pom.xml b/container-documentapi/pom.xml
new file mode 100644
index 00000000000..1251b7f226b
--- /dev/null
+++ b/container-documentapi/pom.xml
@@ -0,0 +1,57 @@
+<?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>container-documentapi</artifactId>
+ <packaging>container-plugin</packaging>
+ <version>7-SNAPSHOT</version>
+
+ <dependencies>
+
+ <dependency>
+ <!-- TODO: this is instead of moving the java code in documentapi to this module,
+ which is made difficult by using common test files with the C++ code. -->
+ <groupId>com.yahoo.vespa</groupId>
+ <artifactId>documentapi</artifactId>
+ <version>${project.version}</version>
+ <exclusions>
+ <exclusion>
+ <groupId>*</groupId>
+ <artifactId>*</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+
+ <dependency>
+ <!-- Compile scope to pull vdslib into container-core and hence container-disc and container-dev -->
+ <!-- TODO: move to container-core -->
+ <groupId>com.yahoo.vespa</groupId>
+ <artifactId>vdslib</artifactId>
+ <version>${project.version}</version>
+ <exclusions>
+ <exclusion>
+ <groupId>*</groupId>
+ <artifactId>*</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+
+ </dependencies>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>com.yahoo.vespa</groupId>
+ <artifactId>bundle-plugin</artifactId>
+ <extensions>true</extensions>
+ </plugin>
+ </plugins>
+ </build>
+</project>