diff options
-rw-r--r-- | auth/docker/dstop.sh | 2 | ||||
-rw-r--r-- | auth/pom.xml | 9 |
2 files changed, 10 insertions, 1 deletions
diff --git a/auth/docker/dstop.sh b/auth/docker/dstop.sh index c325c6a1..6105a00b 100644 --- a/auth/docker/dstop.sh +++ b/auth/docker/dstop.sh @@ -3,7 +3,7 @@ ORG=onap PROJECT=aaf DOCKER_REPOSITORY=nexus3.onap.org:10003 VERSION=2.1.0-SNAPSHOT -./d.props +. ./d.props if [ "$1" == "" ]; then AAF_COMPONENTS=`ls ../aaf_${VERSION}/bin | grep -v '\.'` diff --git a/auth/pom.xml b/auth/pom.xml index 458177bb..777480ea 100644 --- a/auth/pom.xml +++ b/auth/pom.xml @@ -512,6 +512,15 @@ </exclusion> </exclusions> </dependency> + + <!-- Note: Ensure DataStax uses more up-to-date netty handler --> + <dependency> + <groupId>io.netty</groupId> + <artifactId>netty-handler</artifactId> + <version>4.1.22.Final</version> + </dependency> + + <dependency> <groupId>org.slf4j</groupId> |