diff options
author | 2024-11-06 11:46:41 +0000 | |
---|---|---|
committer | 2024-11-07 11:33:37 +0000 | |
commit | d101f30f39531b45d568a177cb32e73e07486433 (patch) | |
tree | 52b4d574d16d68056054bd8ecec4d75cfb24baf1 /xacml-test | |
parent | a7577cb59e90ef1c6ba5031b138fb1b45b828f95 (diff) |
Fix references and organize dependencies in xacml-pdp after
splitting policy-endpoints and message-bus
Issue-ID: POLICY-5131
Change-Id: I6181f763f140589f681beb602c56b4290e3fab1a
Signed-off-by: adheli.tavares <adheli.tavares@est.tech>
Diffstat (limited to 'xacml-test')
-rw-r--r-- | xacml-test/pom.xml | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/xacml-test/pom.xml b/xacml-test/pom.xml index f2131dfe..638deaaf 100644 --- a/xacml-test/pom.xml +++ b/xacml-test/pom.xml @@ -3,7 +3,7 @@ ONAP ================================================================================ Copyright (C) 2019 AT&T Intellectual Property. All rights reserved. - Modifications Copyright (C) 2023 Nordix Foundation. + Modifications Copyright (C) 2023-2024 Nordix Foundation. ================================================================================ Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -48,6 +48,18 @@ <groupId>org.onap.policy.common</groupId> <artifactId>utils</artifactId> <version>${policy.common.version}</version> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>org.onap.policy.models</groupId> + <artifactId>policy-models-tosca</artifactId> + <version>${policy.models.version}</version> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-api</artifactId> + <scope>provided</scope> </dependency> </dependencies> </project> |