a.sreekumar | 1d86d11 | 2019-03-26 13:54:45 +0000 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
liamfallon | 755eb9d | 2020-01-22 12:11:11 +0000 | [diff] [blame] | 3 | Copyright (C) 2019-2020 Nordix Foundation. |
a.sreekumar | 1d86d11 | 2019-03-26 13:54:45 +0000 | [diff] [blame] | 4 | ================================================================================ |
| 5 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | you may not use this file except in compliance with the License. |
| 7 | You may obtain a copy of the License at |
| 8 | |
| 9 | http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | |
| 11 | Unless required by applicable law or agreed to in writing, software |
| 12 | distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | See the License for the specific language governing permissions and |
| 15 | limitations under the License. |
| 16 | |
| 17 | SPDX-License-Identifier: Apache-2.0 |
| 18 | ============LICENSE_END========================================================= |
| 19 | --> |
| 20 | |
| 21 | <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" |
| 22 | xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
| 23 | <modelVersion>4.0.0</modelVersion> |
| 24 | <parent> |
| 25 | <groupId>org.onap.policy.apex-pdp.services</groupId> |
| 26 | <artifactId>services</artifactId> |
liamfallon | bdf7e00 | 2022-09-23 10:58:52 +0100 | [diff] [blame] | 27 | <version>2.8.1-SNAPSHOT</version> |
a.sreekumar | 1d86d11 | 2019-03-26 13:54:45 +0000 | [diff] [blame] | 28 | </parent> |
| 29 | |
| 30 | <artifactId>services-onappf</artifactId> |
| 31 | |
| 32 | <name>services-onappf</name> |
| 33 | <description>This module handles the registration/deregistration of apex-pdp to ONAP Policy Framework.</description> |
| 34 | |
| 35 | <dependencies> |
| 36 | <dependency> |
a.sreekumar | 1d86d11 | 2019-03-26 13:54:45 +0000 | [diff] [blame] | 37 | <groupId>org.onap.policy.apex-pdp.services</groupId> |
| 38 | <artifactId>services-engine</artifactId> |
| 39 | <version>${project.version}</version> |
| 40 | </dependency> |
| 41 | <dependency> |
| 42 | <groupId>org.onap.policy.common</groupId> |
a.sreekumar | 1d86d11 | 2019-03-26 13:54:45 +0000 | [diff] [blame] | 43 | <artifactId>policy-endpoints</artifactId> |
a.sreekumar | b6505e6 | 2019-04-09 20:48:32 +0000 | [diff] [blame] | 44 | </dependency> |
a.sreekumar | 1d86d11 | 2019-03-26 13:54:45 +0000 | [diff] [blame] | 45 | <dependency> |
a.sreekumar | 00ee73f | 2019-04-16 09:40:48 +0000 | [diff] [blame] | 46 | <groupId>org.onap.policy.apex-pdp.plugins.plugins-event.plugins-event-carrier</groupId> |
| 47 | <artifactId>plugins-event-carrier-restserver</artifactId> |
| 48 | <version>${project.version}</version> |
| 49 | </dependency> |
| 50 | <dependency> |
a.sreekumar | 1d86d11 | 2019-03-26 13:54:45 +0000 | [diff] [blame] | 51 | <groupId>org.onap.policy.common</groupId> |
| 52 | <artifactId>utils-test</artifactId> |
| 53 | <version>${version.policy.common}</version> |
| 54 | </dependency> |
| 55 | <dependency> |
a.sreekumar | 50b8477 | 2019-04-02 09:09:51 +0000 | [diff] [blame] | 56 | <groupId>org.onap.policy.models</groupId> |
| 57 | <artifactId>policy-models-pdp</artifactId> |
a.sreekumar | b6505e6 | 2019-04-09 20:48:32 +0000 | [diff] [blame] | 58 | <exclusions> |
| 59 | <exclusion> |
| 60 | <groupId>javax.ws.rs</groupId> |
| 61 | <artifactId>javax.ws.rs-api</artifactId> |
| 62 | </exclusion> |
| 63 | </exclusions> |
a.sreekumar | 50b8477 | 2019-04-02 09:09:51 +0000 | [diff] [blame] | 64 | <version>${version.policy.models}</version> |
| 65 | </dependency> |
Sirisha_Manchikanti | b6fc8c5 | 2022-09-28 09:12:45 +0100 | [diff] [blame^] | 66 | <dependency> |
| 67 | <groupId>org.apache.kafka</groupId> |
| 68 | <artifactId>kafka-clients</artifactId> |
| 69 | <scope>provided</scope> |
| 70 | </dependency> |
a.sreekumar | eabc695 | 2019-04-11 16:56:29 +0000 | [diff] [blame] | 71 | |
| 72 | <!--test dependencies --> |
a.sreekumar | 50b8477 | 2019-04-02 09:09:51 +0000 | [diff] [blame] | 73 | <dependency> |
a.sreekumar | 1d86d11 | 2019-03-26 13:54:45 +0000 | [diff] [blame] | 74 | <groupId>org.assertj</groupId> |
| 75 | <artifactId>assertj-core</artifactId> |
| 76 | <scope>test</scope> |
| 77 | </dependency> |
a.sreekumar | 50b8477 | 2019-04-02 09:09:51 +0000 | [diff] [blame] | 78 | <dependency> |
| 79 | <groupId>org.powermock</groupId> |
liamfallon | 755eb9d | 2020-01-22 12:11:11 +0000 | [diff] [blame] | 80 | <artifactId>powermock-api-mockito2</artifactId> |
a.sreekumar | 50b8477 | 2019-04-02 09:09:51 +0000 | [diff] [blame] | 81 | <scope>test</scope> |
| 82 | </dependency> |
a.sreekumar | eabc695 | 2019-04-11 16:56:29 +0000 | [diff] [blame] | 83 | <dependency> |
| 84 | <groupId>junit</groupId> |
| 85 | <artifactId>junit</artifactId> |
| 86 | <scope>test</scope> |
| 87 | </dependency> |
a.sreekumar | 1d86d11 | 2019-03-26 13:54:45 +0000 | [diff] [blame] | 88 | </dependencies> |
| 89 | </project> |