summaryrefslogtreecommitdiffstats
path: root/http-client/pom.xml
diff options
context:
space:
mode:
authorjonmv <venstad@gmail.com>2022-04-28 10:12:06 +0200
committerjonmv <venstad@gmail.com>2022-04-28 10:12:06 +0200
commit1a4c0d52ab509782dacf128624665789c9b0f59b (patch)
tree6de8bb1c6bfa1e4f8f8792146a03d93881933b37 /http-client/pom.xml
parentcd04e0c3a06499971c82678e88510b257d4d6faa (diff)
Split out the general part of the configserver-client
Diffstat (limited to 'http-client/pom.xml')
-rw-r--r--http-client/pom.xml57
1 files changed, 57 insertions, 0 deletions
diff --git a/http-client/pom.xml b/http-client/pom.xml
new file mode 100644
index 00000000000..a452353cb8a
--- /dev/null
+++ b/http-client/pom.xml
@@ -0,0 +1,57 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright Yahoo. 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/xsd/maven-4.0.0.xsd">
+
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <artifactId>parent</artifactId>
+ <groupId>com.yahoo.vespa</groupId>
+ <version>7-SNAPSHOT</version>
+ <relativePath>../parent/pom.xml</relativePath>
+ </parent>
+ <artifactId>http-client</artifactId>
+ <description>HTTP client wrapper around an Apache http client 5</description>
+
+ <dependencies>
+ <dependency>
+ <groupId>com.yahoo.vespa</groupId>
+ <artifactId>http-utils</artifactId>
+ <version>${project.version}</version>
+ <scope>compile</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>com.yahoo.vespa</groupId>
+ <artifactId>container-apache-http-client-bundle</artifactId>
+ <version>${project.version}</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>com.yahoo.vespa</groupId>
+ <artifactId>vespajlib</artifactId>
+ <version>${project.version}</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>com.yahoo.vespa</groupId>
+ <artifactId>yolean</artifactId>
+ <version>${project.version}</version>
+ <scope>provided</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>org.junit.jupiter</groupId>
+ <artifactId>junit-jupiter</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>com.github.tomakehurst</groupId>
+ <artifactId>wiremock-standalone</artifactId>
+ <version>2.27.2</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+</project>
+