aboutsummaryrefslogtreecommitdiffstats
path: root/container
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@yahoo-inc.com>2016-10-19 09:58:42 +0200
committerJon Bratseth <bratseth@yahoo-inc.com>2016-10-19 09:58:42 +0200
commit53e27a2b1277a40c5f9edc080387ae45cbd64199 (patch)
tree8e4a024f31aeee24c72d80da604bb333e1526019 /container
parenta2cee569e402332aee35cc12374bff3b0da34135 (diff)
Add container module for exteral dependees
Diffstat (limited to 'container')
-rw-r--r--container/OWNERS1
-rw-r--r--container/pom.xml35
2 files changed, 36 insertions, 0 deletions
diff --git a/container/OWNERS b/container/OWNERS
new file mode 100644
index 00000000000..3b2ba1ede81
--- /dev/null
+++ b/container/OWNERS
@@ -0,0 +1 @@
+gjoranv
diff --git a/container/pom.xml b/container/pom.xml
new file mode 100644
index 00000000000..e46b4a4d419
--- /dev/null
+++ b/container/pom.xml
@@ -0,0 +1,35 @@
+<?xml version="1.0"?>
+<!-- Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. -->
+<!-- This module collects all dependencies applications need to create container components. -->
+<!-- It should be considered an external Vespa API. -->
+<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>6-SNAPSHOT</version>
+ </parent>
+ <artifactId>container</artifactId>
+ <version>6-SNAPSHOT</version>
+ <packaging>jar</packaging>
+ <dependencies>
+ <dependency>
+ <groupId>com.yahoo.vespa</groupId>
+ <artifactId>container-dev</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.yahoo.vespa</groupId>
+ <artifactId>vespaclient-container-plugin</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.yahoo.vespa</groupId>
+ <artifactId>application</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ </dependencies>
+</project>