aboutsummaryrefslogtreecommitdiffstats
path: root/http-utils/pom.xml
diff options
context:
space:
mode:
authorHÃ¥kon Hallingstad <hakon@verizonmedia.com>2019-04-08 11:23:51 +0200
committerGitHub <noreply@github.com>2019-04-08 11:23:51 +0200
commite26fe5c363a5eea163635ff59352ba9cde2a855e (patch)
treef232c3e29701395c65cf9af0b691b823bd3c0bbf /http-utils/pom.xml
parent759eb69f16a04488d8661b24087d7da8a7cccd91 (diff)
Revert "Bjorncs/http utils"
Diffstat (limited to 'http-utils/pom.xml')
-rw-r--r--http-utils/pom.xml52
1 files changed, 0 insertions, 52 deletions
diff --git a/http-utils/pom.xml b/http-utils/pom.xml
deleted file mode 100644
index aea402aef87..00000000000
--- a/http-utils/pom.xml
+++ /dev/null
@@ -1,52 +0,0 @@
-<?xml version="1.0"?>
-<!-- Copyright 2019 Oath Inc. 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>http-utils</artifactId>
- <packaging>jar</packaging>
- <version>7-SNAPSHOT</version>
- <dependencies>
- <!-- provided -->
- <dependency>
- <groupId>com.yahoo.vespa</groupId>
- <artifactId>security-utils</artifactId>
- <version>${project.version}</version>
- <scope>provided</scope>
- </dependency>
-
- <!-- compile scope -->
- <dependency>
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>httpclient</artifactId>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>httpcore</artifactId>
- <scope>compile</scope>
- </dependency>
-
- <!-- test scope -->
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.assertj</groupId>
- <artifactId>assertj-core</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.mockito</groupId>
- <artifactId>mockito-core</artifactId>
- <scope>test</scope>
- </dependency>
- </dependencies>
-</project>