diff options
-rw-r--r-- | asdctool/pom.xml | 10 | ||||
-rw-r--r-- | catalog-be/pom.xml | 5 | ||||
-rw-r--r-- | catalog-model/pom.xml | 10 | ||||
-rw-r--r-- | pom.xml | 10 | ||||
-rw-r--r-- | test-apis-ci/pom.xml | 11 | ||||
-rw-r--r-- | ui-ci/pom.xml | 5 |
6 files changed, 51 insertions, 0 deletions
diff --git a/asdctool/pom.xml b/asdctool/pom.xml index 0455d7f32e..424bd595a7 100644 --- a/asdctool/pom.xml +++ b/asdctool/pom.xml @@ -480,6 +480,16 @@ <scope>test</scope> </dependency> <!-- testing end --> + + <dependency> + <groupId>io.netty</groupId> + <artifactId>netty-all</artifactId> + </dependency> + + <dependency> + <groupId>io.netty</groupId> + <artifactId>netty-handler</artifactId> + </dependency> </dependencies> <build> diff --git a/catalog-be/pom.xml b/catalog-be/pom.xml index a15f7b8fa6..ac7d789d8a 100644 --- a/catalog-be/pom.xml +++ b/catalog-be/pom.xml @@ -584,6 +584,11 @@ <artifactId>groovy</artifactId> <version>2.4.8</version> </dependency> + + <dependency> + <groupId>io.netty</groupId> + <artifactId>netty-handler</artifactId> + </dependency> </dependencies> <build> diff --git a/catalog-model/pom.xml b/catalog-model/pom.xml index ddb5454ac1..a67f305e45 100644 --- a/catalog-model/pom.xml +++ b/catalog-model/pom.xml @@ -260,6 +260,16 @@ <artifactId>groovy</artifactId> </dependency> + <dependency> + <groupId>io.netty</groupId> + <artifactId>netty-all</artifactId> + </dependency> + + <dependency> + <groupId>io.netty</groupId> + <artifactId>netty-handler</artifactId> + </dependency> + </dependencies> <build> <plugins> @@ -189,6 +189,16 @@ Modifications copyright (c) 2018 Nokia <artifactId>groovy</artifactId> <version>2.4.13</version> </dependency> + <dependency> + <groupId>io.netty</groupId> + <artifactId>netty-all</artifactId> + <version>4.0.45.Final</version> + </dependency> + <dependency> + <groupId>io.netty</groupId> + <artifactId>netty-handler</artifactId> + <version>4.0.45.Final</version> + </dependency> </dependencies> </dependencyManagement> diff --git a/test-apis-ci/pom.xml b/test-apis-ci/pom.xml index e6a6e263a8..5a3c0519cf 100644 --- a/test-apis-ci/pom.xml +++ b/test-apis-ci/pom.xml @@ -382,6 +382,17 @@ <groupId>org.codehaus.groovy</groupId> <artifactId>groovy</artifactId> </dependency> + + <dependency> + <groupId>io.netty</groupId> + <artifactId>netty-all</artifactId> + </dependency> + + <dependency> + <groupId>io.netty</groupId> + <artifactId>netty-handler</artifactId> + </dependency> + </dependencies> <build> diff --git a/ui-ci/pom.xml b/ui-ci/pom.xml index c1ea1396af..b167cc1992 100644 --- a/ui-ci/pom.xml +++ b/ui-ci/pom.xml @@ -257,6 +257,11 @@ <artifactId>groovy</artifactId> </dependency> + <dependency> + <groupId>io.netty</groupId> + <artifactId>netty-handler</artifactId> + </dependency> + </dependencies> <build> |