diff options
Diffstat (limited to 'binding-parent/pom.xml')
-rw-r--r-- | binding-parent/pom.xml | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/binding-parent/pom.xml b/binding-parent/pom.xml index 3c1d9ff..5c7bb1b 100644 --- a/binding-parent/pom.xml +++ b/binding-parent/pom.xml @@ -31,7 +31,7 @@ limitations under the License. <parent> <groupId>org.onap.ccsdk.parent</groupId> <artifactId>binding-parent</artifactId> - <version>1.4.3</version> + <version>1.5.1</version> <relativePath /> </parent> @@ -66,6 +66,9 @@ limitations under the License. <velocity.version>1.7</velocity.version> <xmlunit.version>1.6</xmlunit.version> <xmlunit-core.version>2.3.0</xmlunit-core.version> + <httpclient.version>4.5.10</httpclient.version> + <httpcore.version>4.4.13</httpcore.version> + <jline.version>3.13.3</jline.version> <!-- SONAR --> <sonar.language>java</sonar.language> @@ -159,6 +162,26 @@ limitations under the License. <version>${sdnctl.dblib.version}</version> </dependency> <dependency> + <groupId>xmlunit</groupId> + <artifactId>xmlunit</artifactId> + <version>${xmlunit.version}</version> + </dependency> + <dependency> + <groupId>org.apache.httpcomponents</groupId> + <artifactId>httpcore</artifactId> + <version>${httpcore.version}</version> + </dependency> + <dependency> + <groupId>org.apache.httpcomponents</groupId> + <artifactId>httpclient</artifactId> + <version>${httpclient.version}</version> + </dependency> + <dependency> + <groupId>org.jline</groupId> + <artifactId>jline</artifactId> + <version>${jline.version}</version> + </dependency> + <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-api-mockito</artifactId> <version>1.6.4</version> |