diff options
author | Ofir Sonsino <os0695@intl.att.com> | 2018-08-23 11:31:48 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-08-23 11:31:48 +0000 |
commit | 5adc0b0ee92d1e39ddaacd27e67a327dd5988f11 (patch) | |
tree | bbb51070fd9996ca9e3e5ef85c029aa2da693782 /vid-app-common/pom.xml | |
parent | eea1c99fcc1ec5a0587f60fe7ac5ba96e186ca81 (diff) | |
parent | 985bc34c7519ae45adf464d68315f06972152d0e (diff) |
Merge "Generic REST client for external services"
Diffstat (limited to 'vid-app-common/pom.xml')
-rwxr-xr-x | vid-app-common/pom.xml | 45 |
1 files changed, 42 insertions, 3 deletions
diff --git a/vid-app-common/pom.xml b/vid-app-common/pom.xml index b8fbd853..9a6210b1 100755 --- a/vid-app-common/pom.xml +++ b/vid-app-common/pom.xml @@ -250,17 +250,50 @@ <artifactId>opencsv</artifactId>
<version>4.1</version>
</dependency>
-
+
<!-- HTTP client -->
+
+ <dependency>
+ <groupId>io.joshworks.unirest</groupId>
+ <artifactId>unirest-java</artifactId>
+ <version>0.2.1</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.httpcomponents</groupId>
+ <artifactId>httpclient</artifactId>
+ <version>4.3.6</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.httpcomponents</groupId>
+ <artifactId>httpasyncclient</artifactId>
+ <version>4.0.2</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.httpcomponents</groupId>
+ <artifactId>httpmime</artifactId>
+ <version>4.3.6</version>
+ </dependency>
<dependency>
<groupId>com.xebialabs.restito</groupId>
<artifactId>restito</artifactId>
<version>0.9.3</version>
<scope>test</scope>
</dependency>
-
- <!-- SDK overlay war -->
+ <!-- Helpers -->
+ <dependency>
+ <groupId>org.projectlombok</groupId>
+ <artifactId>lombok</artifactId>
+ <version>1.18.2</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>io.vavr</groupId>
+ <artifactId>vavr</artifactId>
+ <version>0.9.2</version>
+ </dependency>
+
+ <!-- SDK overlay war -->
<dependency>
<groupId>org.onap.portal.sdk</groupId>
<artifactId>epsdk-app-overlay</artifactId>
@@ -354,6 +387,12 @@ <version>4.12</version>
</dependency>
<dependency>
+ <groupId>commons-io</groupId>
+ <artifactId>commons-io</artifactId>
+ <version>2.4</version>
+ <!--<scope>test</scope>-->
+ </dependency>
+ <dependency>
<groupId>com.google.code.bean-matchers</groupId>
<artifactId>bean-matchers</artifactId>
<version>0.11</version>
|