blob: 9bbd2dd0f186fe5b7a6f1d504d8ecd8f1c2d496c [file] [log] [blame]
Pamela Dragosha974aa02017-02-14 19:31:53 -05001<!--
2 ============LICENSE_START=======================================================
Guo Ruijingf8a620d2017-07-28 08:21:14 +00003 ONAP Policy Engine - Common Modules
Pamela Dragosha974aa02017-02-14 19:31:53 -05004 ================================================================================
Jim Hahn98d2ab12021-02-04 17:12:46 -05005 Copyright (C) 2017-2021 AT&T Intellectual Property. All rights reserved.
Pamela Dragosha974aa02017-02-14 19:31:53 -05006 ================================================================================
7 Licensed under the Apache License, Version 2.0 (the "License");
8 you may not use this file except in compliance with the License.
9 You may obtain a copy of the License at
Jim Hahnd6aa3fa2019-06-21 13:19:31 -040010
Pamela Dragosha974aa02017-02-14 19:31:53 -050011 http://www.apache.org/licenses/LICENSE-2.0
Jim Hahnd6aa3fa2019-06-21 13:19:31 -040012
Pamela Dragosha974aa02017-02-14 19:31:53 -050013 Unless required by applicable law or agreed to in writing, software
14 distributed under the License is distributed on an "AS IS" BASIS,
15 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 See the License for the specific language governing permissions and
17 limitations under the License.
18 ============LICENSE_END=========================================================
19 -->
20
Jim Hahnd6aa3fa2019-06-21 13:19:31 -040021<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
Pamela Dragosha974aa02017-02-14 19:31:53 -050023
Jim Hahnd6aa3fa2019-06-21 13:19:31 -040024 <modelVersion>4.0.0</modelVersion>
Pamela Dragosha974aa02017-02-14 19:31:53 -050025
Jim Hahnd6aa3fa2019-06-21 13:19:31 -040026 <artifactId>integrity-monitor</artifactId>
Pamela Dragosha974aa02017-02-14 19:31:53 -050027
Jim Hahnd6aa3fa2019-06-21 13:19:31 -040028 <packaging>jar</packaging>
Pamela Dragosha974aa02017-02-14 19:31:53 -050029
Jim Hahnd6aa3fa2019-06-21 13:19:31 -040030 <parent>
31 <groupId>org.onap.policy.common</groupId>
32 <artifactId>common-modules</artifactId>
Jim Hahn0b7b9cf2021-03-10 14:27:32 -050033 <version>1.9.0-SNAPSHOT</version>
Jim Hahnd6aa3fa2019-06-21 13:19:31 -040034 </parent>
Pamela Dragosha974aa02017-02-14 19:31:53 -050035
Jim Hahnd6aa3fa2019-06-21 13:19:31 -040036 <name>Integrity Monitor</name>
37
38 <dependencies>
39 <dependency>
Jim Hahn37b7d292018-06-21 15:43:32 -040040 <groupId>org.powermock</groupId>
HOCKLA61394602020-01-09 11:48:49 -060041 <artifactId>powermock-api-mockito2</artifactId>
Jim Hahn37b7d292018-06-21 15:43:32 -040042 <scope>test</scope>
43 </dependency>
Jim Hahnd6aa3fa2019-06-21 13:19:31 -040044 <dependency>
45 <groupId>junit</groupId>
46 <artifactId>junit</artifactId>
47 <scope>test</scope>
48 </dependency>
49 <dependency>
Jim Hahnd6aa3fa2019-06-21 13:19:31 -040050 <groupId>com.h2database</groupId>
51 <artifactId>h2</artifactId>
52 </dependency>
53 <dependency>
54 <groupId>org.eclipse.persistence</groupId>
Jim Hahnd6aa3fa2019-06-21 13:19:31 -040055 <artifactId>eclipselink</artifactId>
56 </dependency>
57 <dependency>
Jim Hahnb52c7f22019-06-24 08:41:18 -040058 <groupId>org.projectlombok</groupId>
59 <artifactId>lombok</artifactId>
60 <scope>provided</scope>
61 </dependency>
62 <dependency>
Jim Hahnd6aa3fa2019-06-21 13:19:31 -040063 <groupId>org.onap.policy.common</groupId>
64 <artifactId>utils</artifactId>
65 <version>${project.version}</version>
66 </dependency>
67 <dependency>
68 <groupId>org.onap.policy.common</groupId>
69 <artifactId>utils-test</artifactId>
70 <version>${project.version}</version>
71 <scope>test</scope>
72 </dependency>
73 <dependency>
74 <groupId>org.assertj</groupId>
75 <artifactId>assertj-core</artifactId>
76 <scope>test</scope>
77 </dependency>
78 <dependency>
79 <groupId>org.onap.policy.common</groupId>
80 <artifactId>ONAP-Logging</artifactId>
81 <version>${project.version}</version>
82 </dependency>
83 <dependency>
84 <groupId>commons-logging</groupId>
85 <artifactId>commons-logging</artifactId>
RossC6a384a22020-07-01 16:45:01 +010086 <version>1.2</version>
Jim Hahnd6aa3fa2019-06-21 13:19:31 -040087 <scope>test</scope>
88 </dependency>
89 </dependencies>
Pamela Dragosha974aa02017-02-14 19:31:53 -050090</project>