Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
Guo Ruijing | 6abeb29 | 2017-07-28 08:23:01 +0000 | [diff] [blame] | 4 | ONAP Policy Engine - Drools PDP |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 5 | ================================================================================ |
jhh | 13ab17b | 2021-02-05 16:05:50 -0600 | [diff] [blame] | 6 | Copyright (C) 2017, 2019-2021 AT&T Intellectual Property. All rights reserved. |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [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 |
jhh | 13ab17b | 2021-02-05 16:05:50 -0600 | [diff] [blame] | 11 | |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 12 | http://www.apache.org/licenses/LICENSE-2.0 |
jhh | 13ab17b | 2021-02-05 16:05:50 -0600 | [diff] [blame] | 13 | |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 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 | |
Jorge Hernandez | 897ba35 | 2019-02-12 07:28:18 -0600 | [diff] [blame] | 22 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 23 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 24 | <modelVersion>4.0.0</modelVersion> |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 25 | |
Jorge Hernandez | 897ba35 | 2019-02-12 07:28:18 -0600 | [diff] [blame] | 26 | <artifactId>policy-utils</artifactId> |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 27 | |
Jorge Hernandez | 897ba35 | 2019-02-12 07:28:18 -0600 | [diff] [blame] | 28 | <parent> |
| 29 | <groupId>org.onap.policy.drools-pdp</groupId> |
| 30 | <artifactId>drools-pdp</artifactId> |
jhh | d8c487e | 2021-03-11 18:40:45 -0600 | [diff] [blame] | 31 | <version>1.9.0-SNAPSHOT</version> |
Jorge Hernandez | 897ba35 | 2019-02-12 07:28:18 -0600 | [diff] [blame] | 32 | </parent> |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 33 | |
Jorge Hernandez | 897ba35 | 2019-02-12 07:28:18 -0600 | [diff] [blame] | 34 | <dependencies> |
Pamela Dragosh | a0e0c78 | 2018-09-28 04:58:26 -0400 | [diff] [blame] | 35 | <dependency> |
| 36 | <groupId>ch.qos.logback</groupId> |
| 37 | <artifactId>logback-classic</artifactId> |
Jorge Hernandez | 897ba35 | 2019-02-12 07:28:18 -0600 | [diff] [blame] | 38 | </dependency> |
Pamela Dragosh | a0e0c78 | 2018-09-28 04:58:26 -0400 | [diff] [blame] | 39 | <dependency> |
| 40 | <groupId>junit</groupId> |
| 41 | <artifactId>junit</artifactId> |
| 42 | <scope>test</scope> |
| 43 | </dependency> |
| 44 | <dependency> |
jhh | baa4e92 | 2020-01-30 18:57:13 -0600 | [diff] [blame] | 45 | <groupId>org.assertj</groupId> |
| 46 | <artifactId>assertj-core</artifactId> |
| 47 | <scope>test</scope> |
| 48 | </dependency> |
| 49 | <dependency> |
jhh | 13ab17b | 2021-02-05 16:05:50 -0600 | [diff] [blame] | 50 | <groupId>com.openpojo</groupId> |
| 51 | <artifactId>openpojo</artifactId> |
| 52 | <scope>test</scope> |
| 53 | </dependency> |
| 54 | <dependency> |
Pamela Dragosh | a0e0c78 | 2018-09-28 04:58:26 -0400 | [diff] [blame] | 55 | <groupId>org.onap.policy.common</groupId> |
| 56 | <artifactId>utils</artifactId> |
ramverma | 5bf8486 | 2018-10-24 19:35:48 +0100 | [diff] [blame] | 57 | <version>${policy.common.version}</version> |
Jorge Hernandez | 897ba35 | 2019-02-12 07:28:18 -0600 | [diff] [blame] | 58 | </dependency> |
| 59 | <dependency> |
| 60 | <groupId>org.apache.commons</groupId> |
| 61 | <artifactId>commons-configuration2</artifactId> |
Joseph Chou | db12e7c | 2020-03-25 18:12:12 -0400 | [diff] [blame] | 62 | <version>2.7</version> |
Jorge Hernandez | 897ba35 | 2019-02-12 07:28:18 -0600 | [diff] [blame] | 63 | </dependency> |
jhh | baa4e92 | 2020-01-30 18:57:13 -0600 | [diff] [blame] | 64 | <dependency> |
| 65 | <groupId>org.onap.policy.common</groupId> |
| 66 | <artifactId>gson</artifactId> |
| 67 | <version>${policy.common.version}</version> |
| 68 | </dependency> |
| 69 | <dependency> |
| 70 | <groupId>org.projectlombok</groupId> |
| 71 | <artifactId>lombok</artifactId> |
| 72 | <scope>provided</scope> |
| 73 | </dependency> |
| 74 | <dependency> |
| 75 | <groupId>org.onap.policy.models</groupId> |
| 76 | <artifactId>policy-models-tosca</artifactId> |
| 77 | <version>${policy.models.version}</version> |
| 78 | </dependency> |
Pamela Dragosh | a0e0c78 | 2018-09-28 04:58:26 -0400 | [diff] [blame] | 79 | </dependencies> |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 80 | </project> |