diff options
Diffstat (limited to 'plugins/pom.xml')
-rw-r--r-- | plugins/pom.xml | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/plugins/pom.xml b/plugins/pom.xml index cdf24f28c..67e35dd1f 100644 --- a/plugins/pom.xml +++ b/plugins/pom.xml @@ -1,7 +1,7 @@ <!-- ============LICENSE_START======================================================= Copyright (C) 2018 Ericsson. All rights reserved. - Modifications Copyright (C) 2021-2022 Nordix Foundation. + Modifications Copyright (C) 2021-2023 Nordix Foundation. ================================================================================ Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -24,7 +24,7 @@ <parent> <groupId>org.onap.policy.apex-pdp</groupId> <artifactId>apex-pdp</artifactId> - <version>3.0.0-SNAPSHOT</version> + <version>3.0.1-SNAPSHOT</version> </parent> <groupId>org.onap.policy.apex-pdp.plugins</groupId> @@ -34,13 +34,22 @@ <name>${project.artifactId}</name> <description>Plugins for Apex that can be implemented with various 3PPs are implemented here.</description> - <properties> - <version.hazelcast>5.2.2</version.hazelcast> - </properties> - <modules> <module>plugins-context</module> <module>plugins-event</module> <module>plugins-executor</module> </modules> + + <dependencies> + <dependency> + <groupId>org.onap.policy.common</groupId> + <artifactId>common-parameters</artifactId> + </dependency> + <dependency> + <groupId>org.onap.policy.apex-pdp.services</groupId> + <artifactId>services-engine</artifactId> + <version>${project.version}</version> + <scope>compile</scope> + </dependency> + </dependencies> </project> |