diff options
Diffstat (limited to 'pmdictionaryvalidation/pom.xml')
-rw-r--r-- | pmdictionaryvalidation/pom.xml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/pmdictionaryvalidation/pom.xml b/pmdictionaryvalidation/pom.xml index f9f5ed2..d677a9e 100644 --- a/pmdictionaryvalidation/pom.xml +++ b/pmdictionaryvalidation/pom.xml @@ -34,9 +34,22 @@ <mockito-core.version>3.5.0</mockito-core.version> <mockito-junit-jupiter.version>2.23.0</mockito-junit-jupiter.version> <gson.version>2.8.6</gson.version> + <cli-framework.version>5.0.3</cli-framework.version> + <cli-main.version>5.0.2</cli-main.version> </properties> <dependencies> <dependency> + <groupId>org.onap.cli</groupId> + <artifactId>cli-framework</artifactId> + <version>${cli-framework.version}</version> + <exclusions> + <exclusion> + <groupId>commons-codec</groupId> + <artifactId>commons-codec</artifactId> + </exclusion> + </exclusions> + </dependency> + <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-slf4j-impl</artifactId> <version>${log4j-slf4j-impl.version}</version> @@ -88,6 +101,12 @@ <version>${mockito-junit-jupiter.version}</version> <scope>test</scope> </dependency> + <dependency> + <groupId>org.onap.cli</groupId> + <artifactId>cli-main</artifactId> + <version>${cli-main.version}</version> + <scope>test</scope> + </dependency> </dependencies> <build> <finalName>${project.artifactId}-${project.version}</finalName> |