diff options
Diffstat (limited to 'controlloop/common/feature-controlloop-management')
-rw-r--r-- | controlloop/common/feature-controlloop-management/pom.xml | 16 | ||||
-rw-r--r-- | controlloop/common/feature-controlloop-management/src/main/feature/config/controlloop.properties.environment | 7 |
2 files changed, 23 insertions, 0 deletions
diff --git a/controlloop/common/feature-controlloop-management/pom.xml b/controlloop/common/feature-controlloop-management/pom.xml index bf43f20dc..24f7a1792 100644 --- a/controlloop/common/feature-controlloop-management/pom.xml +++ b/controlloop/common/feature-controlloop-management/pom.xml @@ -245,6 +245,17 @@ </exclusions> </dependency> <dependency> + <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId> + <artifactId>actor.cds</artifactId> + <version>${policy.models.version}</version> + <exclusions> + <exclusion> + <artifactId>guava</artifactId> + <groupId>com.google.guava</groupId> + </exclusion> + </exclusions> + </dependency> + <dependency> <groupId>org.onap.policy.models.policy-models-interactions</groupId> <artifactId>model-yaml</artifactId> <version>${policy.models.version}</version> @@ -266,6 +277,11 @@ <scope>provided</scope> </dependency> <dependency> + <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId> + <artifactId>cds</artifactId> + <version>${policy.models.version}</version> + </dependency> + <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> diff --git a/controlloop/common/feature-controlloop-management/src/main/feature/config/controlloop.properties.environment b/controlloop/common/feature-controlloop-management/src/main/feature/config/controlloop.properties.environment index 84bef12f9..4a0916895 100644 --- a/controlloop/common/feature-controlloop-management/src/main/feature/config/controlloop.properties.environment +++ b/controlloop/common/feature-controlloop-management/src/main/feature/config/controlloop.properties.environment @@ -3,6 +3,7 @@ # ONAP # ================================================================================ # Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved. +# Modifications Copyright (C) 2019 Bell Canada. # ================================================================================ # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -51,3 +52,9 @@ sdnc.username=${env:SDNC_USERNAME} sdnc.password=${env:SDNC_PASSWORD} aai.customQuery=true + +cds.grpcHost=${env:CDS_GRPC_HOST} +cds.grpcPort=${env:CDS_GRPC_PORT} +cds.grpcUsername=${env:CDS_GRPC_USERNAME} +cds.grpcPassword=${env:CDS_GRPC_PASSWORD} +cds.grpcTimeout=10 |