aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-core/catalog-mgr/pom.xml
diff options
context:
space:
mode:
authornancylizi <li.zi30@zte.com.cn>2016-08-31 14:22:36 +0800
committernancylizi <li.zi30@zte.com.cn>2016-08-31 14:22:36 +0800
commit2f74a6be8973eab31b8d097117d2d1d12366a0d9 (patch)
treedc85eccc822b822d403872735db3acceba7edc6a /catalog-core/catalog-mgr/pom.xml
parente2ce3e29258bdd8894b2a42fc88a3546d640a82e (diff)
modify catalog code fit for check style
Change-Id: I782b72fc1a4af37f20116fde624a4826d4154546 Signed-off-by: nancylizi <li.zi30@zte.com.cn>
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>