diff options
-rw-r--r-- | asdctool/pom.xml | 6 | ||||
-rw-r--r-- | catalog-be/pom.xml | 6 | ||||
-rw-r--r-- | catalog-dao/.toDelete | 0 | ||||
-rw-r--r-- | catalog-dao/pom.xml | 6 | ||||
-rw-r--r-- | catalog-model/pom.xml | 7 | ||||
-rw-r--r-- | test-apis-ci/pom.xml | 7 | ||||
-rw-r--r-- | ui-ci/pom.xml | 6 |
7 files changed, 37 insertions, 1 deletions
diff --git a/asdctool/pom.xml b/asdctool/pom.xml index 73fbf08d5c..0ccf87098d 100644 --- a/asdctool/pom.xml +++ b/asdctool/pom.xml @@ -502,6 +502,7 @@ <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> + <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> @@ -509,6 +510,11 @@ </dependency> <!-- testing end --> + <dependency> + <groupId>org.codehaus.groovy</groupId> + <artifactId>groovy</artifactId> + <version>2.4.8</version> + </dependency> </dependencies> <build> diff --git a/catalog-be/pom.xml b/catalog-be/pom.xml index c50a78ec35..b4f59368c3 100644 --- a/catalog-be/pom.xml +++ b/catalog-be/pom.xml @@ -600,6 +600,12 @@ <version>0.11</version> <scope>test</scope> </dependency> + + <dependency> + <groupId>org.codehaus.groovy</groupId> + <artifactId>groovy</artifactId> + <version>2.4.8</version> + </dependency> </dependencies> <build> diff --git a/catalog-dao/.toDelete b/catalog-dao/.toDelete new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/catalog-dao/.toDelete diff --git a/catalog-dao/pom.xml b/catalog-dao/pom.xml index 940047db9f..a4bd9a0036 100644 --- a/catalog-dao/pom.xml +++ b/catalog-dao/pom.xml @@ -311,6 +311,12 @@ Modifications copyright (c) 2018 Nokia <scope>test</scope> </dependency> <!-- CASSANDRA END --> + + <dependency> + <groupId>org.codehaus.groovy</groupId> + <artifactId>groovy</artifactId> + <version>2.4.8</version> + </dependency> </dependencies> <build> diff --git a/catalog-model/pom.xml b/catalog-model/pom.xml index 1d07d91b48..58c4f4fa70 100644 --- a/catalog-model/pom.xml +++ b/catalog-model/pom.xml @@ -250,6 +250,13 @@ <version>1.6.5</version> <scope>test</scope> </dependency> + + <dependency> + <groupId>org.codehaus.groovy</groupId> + <artifactId>groovy</artifactId> + <version>2.4.8</version> + </dependency> + </dependencies> <build> <plugins> diff --git a/test-apis-ci/pom.xml b/test-apis-ci/pom.xml index 5fd06ecf57..2918c62962 100644 --- a/test-apis-ci/pom.xml +++ b/test-apis-ci/pom.xml @@ -376,8 +376,13 @@ <version>${cassandra.driver.version}</version> <scope>compile</scope> </dependency> - <!-- CASSANDRA END --> + + <dependency> + <groupId>org.codehaus.groovy</groupId> + <artifactId>groovy</artifactId> + <version>2.4.8</version> + </dependency> </dependencies> <build> diff --git a/ui-ci/pom.xml b/ui-ci/pom.xml index 5b23f4594f..e20fe644be 100644 --- a/ui-ci/pom.xml +++ b/ui-ci/pom.xml @@ -252,6 +252,12 @@ <version>4.1.0</version> </dependency> + <dependency> + <groupId>org.codehaus.groovy</groupId> + <artifactId>groovy</artifactId> + <version>2.4.8</version> + </dependency> + </dependencies> <build> |