diff options
author | liamfallon <liam.fallon@ericsson.com> | 2018-07-30 13:52:08 +0100 |
---|---|---|
committer | liamfallon <liam.fallon@ericsson.com> | 2018-07-30 15:29:28 +0100 |
commit | d859e902a3a22a8ca97a16e8f19e0ef889e48cb8 (patch) | |
tree | 25c4c13bcb926fcefdf46efdf7636201829b0da1 | |
parent | 4b5f946d6522f2930c3b92166b9ea56ac2888511 (diff) |
Add commons-cli version for all components
Apache commons-cli is used for command argument handling in
multiple modules. It's version is now controlled from the
parent integration POM.
Issue-ID: POLICY-922
Change-Id: Iebf6f731de591f3efba871a924b7a49c13d9fa13
Signed-off-by: liamfallon <liam.fallon@ericsson.com>
-rw-r--r-- | integration/pom.xml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/integration/pom.xml b/integration/pom.xml index fdb68bbe..e668d9a7 100644 --- a/integration/pom.xml +++ b/integration/pom.xml @@ -96,7 +96,6 @@ <version>4.4.9</version> </dependency> - <!-- utility classes, google's collections, io classes --> <dependency> <groupId>com.google.guava</groupId> @@ -156,6 +155,13 @@ <version>1.3.0-oss</version> </dependency> + <!-- Commons CLI for command line parsing --> + <dependency> + <groupId>commons-cli</groupId> + <artifactId>commons-cli</artifactId> + <version>1.4</version> + </dependency> + <!-- Test dependencies --> <!-- In memory Database Engine --> |