aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-core/catalog-mgr/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'catalog-core/catalog-mgr/pom.xml')
-rw-r--r--catalog-core/catalog-mgr/pom.xml26
1 files changed, 26 insertions, 0 deletions
diff --git a/catalog-core/catalog-mgr/pom.xml b/catalog-core/catalog-mgr/pom.xml
index 9f93bc90..12fb85a4 100644
--- a/catalog-core/catalog-mgr/pom.xml
+++ b/catalog-core/catalog-mgr/pom.xml
@@ -26,6 +26,9 @@
<artifactId>catalog-mgr</artifactId>
<name>openo/commontosca/catalog/catalog-mgr</name>
<packaging>jar</packaging>
+ <properties>
+ <httpclient.version>4.4.1</httpclient.version>
+ </properties>
<build>
<plugins>
@@ -275,5 +278,28 @@
<scope>test</scope>
</dependency>
<!-- UT end -->
+ <!-- httpclient-->
+ <dependency>
+ <groupId>org.apache.httpcomponents</groupId>
+ <artifactId>httpclient</artifactId>
+ <version>${httpclient.version}</version>
+ <exclusions>
+ <!-- provided by jcl-over-slf4j to enable logging via logback -->
+ <exclusion>
+ <groupId>commons-logging</groupId>
+ <artifactId>commons-logging</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.httpcomponents</groupId>
+ <artifactId>httpcore</artifactId>
+ <version>${httpclient.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.httpcomponents</groupId>
+ <artifactId>httpmime</artifactId>
+ <version>${httpclient.version}</version>
+ </dependency>
</dependencies>
</project>