blob: c350bea25e5f8ea9884aa21c0893a8b6b648e938 [file] [log] [blame]
liamfallon32c6ed62018-07-24 12:38:24 +01001<!--
2 ============LICENSE_START=======================================================
3 Copyright (C) 2018 Ericsson. All rights reserved.
Jim Hahnea262e62019-06-12 14:32:25 -04004 Modifications Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
liamfallon32c6ed62018-07-24 12:38:24 +01005 ================================================================================
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-->
liamfallon2f72ab62018-10-31 15:23:33 +000021<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">
liamfallon32c6ed62018-07-24 12:38:24 +010022 <modelVersion>4.0.0</modelVersion>
23 <parent>
24 <groupId>org.onap.policy.common</groupId>
25 <artifactId>common-modules</artifactId>
Pamela Dragoshf3e77922020-05-19 13:34:34 -040026 <version>1.7.0-SNAPSHOT</version>
liamfallon32c6ed62018-07-24 12:38:24 +010027 </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>
liamfalloncf282dd2018-09-07 13:36:41 +010034 <dependency>
35 <groupId>org.apache.commons</groupId>
36 <artifactId>commons-lang3</artifactId>
37 </dependency>
liamfallon32c6ed62018-07-24 12:38:24 +010038 <dependency>
Jim Hahn0af10422019-03-07 19:51:59 -050039 <groupId>org.projectlombok</groupId>
40 <artifactId>lombok</artifactId>
41 </dependency>
42 <dependency>
Jim Hahnea262e62019-06-12 14:32:25 -040043 <groupId>org.assertj</groupId>
44 <artifactId>assertj-core</artifactId>
45 <scope>test</scope>
46 </dependency>
47 <dependency>
liamfallon32c6ed62018-07-24 12:38:24 +010048 <groupId>junit</groupId>
49 <artifactId>junit</artifactId>
50 <scope>test</scope>
51 </dependency>
liamfallon73ba8032018-07-30 10:22:27 +010052 <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>
liamfallon73ba8032018-07-30 10:22:27 +010060 <scope>test</scope>
61 </dependency>
liamfallon32c6ed62018-07-24 12:38:24 +010062 </dependencies>
63</project>