liamfallon | 32c6ed6 | 2018-07-24 12:38:24 +0100 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | Copyright (C) 2018 Ericsson. All rights reserved. |
Jim Hahn | ea262e6 | 2019-06-12 14:32:25 -0400 | [diff] [blame^] | 4 | Modifications Copyright (C) 2019 AT&T Intellectual Property. All rights reserved. |
liamfallon | 32c6ed6 | 2018-07-24 12:38:24 +0100 | [diff] [blame] | 5 | ================================================================================ |
| 6 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | you may not use this file except in compliance with the License. |
| 8 | You may obtain a copy of the License at |
| 9 | |
| 10 | http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | |
| 12 | Unless required by applicable law or agreed to in writing, software |
| 13 | distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | See the License for the specific language governing permissions and |
| 16 | limitations under the License. |
| 17 | |
| 18 | SPDX-License-Identifier: Apache-2.0 |
| 19 | ============LICENSE_END========================================================= |
| 20 | --> |
liamfallon | 2f72ab6 | 2018-10-31 15:23:33 +0000 | [diff] [blame] | 21 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
liamfallon | 32c6ed6 | 2018-07-24 12:38:24 +0100 | [diff] [blame] | 22 | <modelVersion>4.0.0</modelVersion> |
| 23 | <parent> |
| 24 | <groupId>org.onap.policy.common</groupId> |
| 25 | <artifactId>common-modules</artifactId> |
Pamela Dragosh | d815765 | 2019-05-28 13:54:17 -0400 | [diff] [blame] | 26 | <version>1.5.0-SNAPSHOT</version> |
liamfallon | 32c6ed6 | 2018-07-24 12:38:24 +0100 | [diff] [blame] | 27 | </parent> |
| 28 | |
| 29 | <artifactId>common-parameters</artifactId> |
| 30 | <name>${project.artifactId}</name> |
| 31 | <description>[${project.parent.artifactId}] module provides common property and parameter handling the ONAP Policy Framework</description> |
| 32 | |
| 33 | <dependencies> |
liamfallon | cf282dd | 2018-09-07 13:36:41 +0100 | [diff] [blame] | 34 | <dependency> |
| 35 | <groupId>org.apache.commons</groupId> |
| 36 | <artifactId>commons-lang3</artifactId> |
| 37 | </dependency> |
liamfallon | 32c6ed6 | 2018-07-24 12:38:24 +0100 | [diff] [blame] | 38 | <dependency> |
Jim Hahn | 0af1042 | 2019-03-07 19:51:59 -0500 | [diff] [blame] | 39 | <groupId>org.projectlombok</groupId> |
| 40 | <artifactId>lombok</artifactId> |
| 41 | </dependency> |
| 42 | <dependency> |
Jim Hahn | ea262e6 | 2019-06-12 14:32:25 -0400 | [diff] [blame^] | 43 | <groupId>org.assertj</groupId> |
| 44 | <artifactId>assertj-core</artifactId> |
| 45 | <scope>test</scope> |
| 46 | </dependency> |
| 47 | <dependency> |
liamfallon | 32c6ed6 | 2018-07-24 12:38:24 +0100 | [diff] [blame] | 48 | <groupId>junit</groupId> |
| 49 | <artifactId>junit</artifactId> |
| 50 | <scope>test</scope> |
| 51 | </dependency> |
liamfallon | 73ba803 | 2018-07-30 10:22:27 +0100 | [diff] [blame] | 52 | <dependency> |
| 53 | <groupId>com.google.code.gson</groupId> |
| 54 | <artifactId>gson</artifactId> |
| 55 | <scope>test</scope> |
| 56 | </dependency> |
| 57 | <dependency> |
| 58 | <groupId>org.yaml</groupId> |
| 59 | <artifactId>snakeyaml</artifactId> |
| 60 | <version>1.21</version> |
| 61 | <scope>test</scope> |
| 62 | </dependency> |
liamfallon | 32c6ed6 | 2018-07-24 12:38:24 +0100 | [diff] [blame] | 63 | </dependencies> |
| 64 | </project> |