blob: 309ce34265119f1772d7ebf601177ff36928de02 [file] [log] [blame]
Jim Hahn4ec725e2019-02-06 13:14:57 -05001<!--
2 ============LICENSE_START=======================================================
3 ONAP Policy Engine - Common Modules
4 ================================================================================
Jim Hahn7a4b6b82021-03-08 14:28:10 -05005 Copyright (C) 2018-2021 AT&T Intellectual Property. All rights reserved.
liamfallon89b8fe52019-11-01 11:21:54 +00006 Modifications Copyright (C) 2019 Nordix Foundation.
Jim Hahn4ec725e2019-02-06 13:14:57 -05007 ================================================================================
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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
23 <modelVersion>4.0.0</modelVersion>
24
25 <parent>
26 <groupId>org.onap.policy.common</groupId>
27 <artifactId>common-modules</artifactId>
Jim Hahn0b7b9cf2021-03-10 14:27:32 -050028 <version>1.9.0-SNAPSHOT</version>
Jim Hahn4ec725e2019-02-06 13:14:57 -050029 </parent>
30
31 <artifactId>gson</artifactId>
32 <description>Common Utilities</description>
33 <packaging>jar</packaging>
34
Jim Hahn4ec725e2019-02-06 13:14:57 -050035 <dependencies>
36 <dependency>
Jim Hahnc7d24b02021-05-07 15:35:55 -040037 <groupId>com.google.re2j</groupId>
38 <artifactId>re2j</artifactId>
39 </dependency>
40 <dependency>
Jim Hahn2917a672019-02-15 17:43:45 -050041 <groupId>org.slf4j</groupId>
42 <artifactId>slf4j-api</artifactId>
43 <scope>provided</scope>
44 </dependency>
45 <dependency>
Jim Hahn4ec725e2019-02-06 13:14:57 -050046 <groupId>org.glassfish.jersey.core</groupId>
47 <artifactId>jersey-server</artifactId>
Jim Hahn4ec725e2019-02-06 13:14:57 -050048 </dependency>
49 <dependency>
50 <groupId>com.google.code.gson</groupId>
51 <artifactId>gson</artifactId>
52 </dependency>
53 <dependency>
liamfallon8640a6e2019-03-14 14:24:14 +000054 <groupId>org.projectlombok</groupId>
55 <artifactId>lombok</artifactId>
56 <scope>provided</scope>
57 </dependency>
58 <dependency>
Jim Hahn4ec725e2019-02-06 13:14:57 -050059 <groupId>org.assertj</groupId>
60 <artifactId>assertj-core</artifactId>
Jim Hahn4ec725e2019-02-06 13:14:57 -050061 <scope>test</scope>
62 </dependency>
63 <dependency>
Jim Hahn7b5f7f82019-07-11 10:10:17 -040064 <groupId>org.powermock</groupId>
HOCKLA61394602020-01-09 11:48:49 -060065 <artifactId>powermock-api-mockito2</artifactId>
Jim Hahn7b5f7f82019-07-11 10:10:17 -040066 <scope>test</scope>
67 </dependency>
68 <dependency>
Jim Hahn4ec725e2019-02-06 13:14:57 -050069 <groupId>junit</groupId>
70 <artifactId>junit</artifactId>
71 <scope>test</scope>
72 </dependency>
73 </dependencies>
Jim Hahn4ec725e2019-02-06 13:14:57 -050074</project>