summaryrefslogtreecommitdiffstats
path: root/filedistribution/pom.xml
diff options
context:
space:
mode:
authorHarald Musum <musum@oath.com>2017-11-23 08:45:52 +0100
committerHarald Musum <musum@oath.com>2017-11-23 08:45:52 +0100
commiteef3f7c477de9033584da18f830694211f1c180f (patch)
treeec0cfbe9e0556b4b9770e37b23bc80f125bc89e6 /filedistribution/pom.xml
parent0f3ec8f7dc2629b22f542fbbfdf51254cc537041 (diff)
Add support for downloading from another config server
If a request for a file reference cannot be fulfilled, ask another config server for the file. Handle connection errors when downloading files. Fixed bundle issues.
Diffstat (limited to 'filedistribution/pom.xml')
-rw-r--r--filedistribution/pom.xml41
1 files changed, 31 insertions, 10 deletions
diff --git a/filedistribution/pom.xml b/filedistribution/pom.xml
index 288b641134f..41622792e43 100644
--- a/filedistribution/pom.xml
+++ b/filedistribution/pom.xml
@@ -3,7 +3,19 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>com.yahoo.vespa</groupId>
+ <artifactId>parent</artifactId>
+ <version>6-SNAPSHOT</version>
+ </parent>
+
+ <artifactId>filedistribution</artifactId>
+ <version>6-SNAPSHOT</version>
+ <packaging>container-plugin</packaging>
+ <name>${project.artifactId}</name>
+
<dependencies>
<dependency>
<groupId>com.yahoo.vespa</groupId>
@@ -29,6 +41,13 @@
<groupId>com.yahoo.vespa</groupId>
<artifactId>config</artifactId>
<version>${project.version}</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>com.yahoo.vespa</groupId>
+ <artifactId>config-lib</artifactId>
+ <version>${project.version}</version>
+ <scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
@@ -40,13 +59,15 @@
<scope>test</scope>
</dependency>
</dependencies>
- <parent>
- <groupId>com.yahoo.vespa</groupId>
- <artifactId>parent</artifactId>
- <version>6-SNAPSHOT</version>
- </parent>
- <artifactId>filedistribution</artifactId>
- <version>6-SNAPSHOT</version>
- <packaging>jar</packaging>
- <name>${project.artifactId}</name>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>com.yahoo.vespa</groupId>
+ <artifactId>bundle-plugin</artifactId>
+ <extensions>true</extensions>
+ </plugin>
+ </plugins>
+ </build>
+
</project>