jhh | 3f563fe | 2020-03-05 22:32:58 -0600 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | ONAP |
| 4 | ================================================================================ |
| 5 | Copyright (C) 2020 AT&T Intellectual Property. All rights reserved. |
adheli.tavares | 5bd2e90 | 2024-04-10 14:12:28 +0100 | [diff] [blame] | 6 | Modifications Copyright (C) 2023-2024 Nordix Foundation. |
jhh | 3f563fe | 2020-03-05 22:32:58 -0600 | [diff] [blame] | 7 | ================================================================================ |
| 8 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 9 | you may not use this file except in compliance with the License. |
| 10 | You may obtain a copy of the License at |
| 11 | |
| 12 | http://www.apache.org/licenses/LICENSE-2.0 |
| 13 | |
| 14 | Unless required by applicable law or agreed to in writing, software |
| 15 | distributed under the License is distributed on an "AS IS" BASIS, |
| 16 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 17 | See the License for the specific language governing permissions and |
| 18 | limitations under the License. |
| 19 | ============LICENSE_END========================================================= |
| 20 | --> |
| 21 | |
| 22 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
adheli.tavares | 396f602 | 2023-08-07 16:01:21 -0400 | [diff] [blame] | 23 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
jhh | 3f563fe | 2020-03-05 22:32:58 -0600 | [diff] [blame] | 24 | <modelVersion>4.0.0</modelVersion> |
| 25 | |
| 26 | <parent> |
| 27 | <groupId>org.onap.policy.drools-pdp</groupId> |
| 28 | <artifactId>drools-pdp</artifactId> |
rameshiyer27 | dcb947d | 2024-11-19 08:28:35 +0000 | [diff] [blame] | 29 | <version>3.0.2-SNAPSHOT</version> |
jhh | 3f563fe | 2020-03-05 22:32:58 -0600 | [diff] [blame] | 30 | </parent> |
| 31 | |
| 32 | <artifactId>policy-domains</artifactId> |
| 33 | |
| 34 | <name>policy-domains</name> |
| 35 | <description>domain policies</description> |
| 36 | |
| 37 | <dependencies> |
jhh | 3f563fe | 2020-03-05 22:32:58 -0600 | [diff] [blame] | 38 | <dependency> |
| 39 | <groupId>org.projectlombok</groupId> |
| 40 | <artifactId>lombok</artifactId> |
| 41 | <scope>provided</scope> |
| 42 | </dependency> |
jhh | 3f563fe | 2020-03-05 22:32:58 -0600 | [diff] [blame] | 43 | <dependency> |
| 44 | <groupId>com.google.code.gson</groupId> |
| 45 | <artifactId>gson</artifactId> |
| 46 | </dependency> |
jhh | 3f563fe | 2020-03-05 22:32:58 -0600 | [diff] [blame] | 47 | <dependency> |
| 48 | <groupId>com.openpojo</groupId> |
| 49 | <artifactId>openpojo</artifactId> |
| 50 | <scope>test</scope> |
| 51 | </dependency> |
jhh | 3f563fe | 2020-03-05 22:32:58 -0600 | [diff] [blame] | 52 | <dependency> |
| 53 | <groupId>org.onap.policy.common</groupId> |
| 54 | <artifactId>utils</artifactId> |
Peyton Puckett | 1f402b6 | 2020-03-24 10:36:43 -0500 | [diff] [blame] | 55 | <version>${policy.common.version}</version> |
jhh | 3f563fe | 2020-03-05 22:32:58 -0600 | [diff] [blame] | 56 | <scope>test</scope> |
| 57 | </dependency> |
jhh | 3f563fe | 2020-03-05 22:32:58 -0600 | [diff] [blame] | 58 | <dependency> |
| 59 | <groupId>org.onap.policy.drools-pdp</groupId> |
| 60 | <artifactId>policy-utils</artifactId> |
Peyton Puckett | 1f402b6 | 2020-03-24 10:36:43 -0500 | [diff] [blame] | 61 | <version>${project.version}</version> |
jhh | 3f563fe | 2020-03-05 22:32:58 -0600 | [diff] [blame] | 62 | <scope>test</scope> |
| 63 | </dependency> |
adheli.tavares | 5bd2e90 | 2024-04-10 14:12:28 +0100 | [diff] [blame] | 64 | <dependency> |
| 65 | <groupId>org.onap.policy.models</groupId> |
| 66 | <artifactId>policy-models-examples</artifactId> |
| 67 | <version>${policy.models.version}</version> |
| 68 | </dependency> |
jhh | 3f563fe | 2020-03-05 22:32:58 -0600 | [diff] [blame] | 69 | </dependencies> |
| 70 | |
| 71 | </project> |