Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
Guo Ruijing | f8a620d | 2017-07-28 08:21:14 +0000 | [diff] [blame] | 3 | ONAP Policy Engine - Common Modules |
Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 4 | ================================================================================ |
Jim Hahn | 98d2ab1 | 2021-02-04 17:12:46 -0500 | [diff] [blame] | 5 | Copyright (C) 2017-2021 AT&T Intellectual Property. All rights reserved. |
Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 6 | ================================================================================ |
| 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 Hahn | d6aa3fa | 2019-06-21 13:19:31 -0400 | [diff] [blame] | 10 | |
Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 11 | http://www.apache.org/licenses/LICENSE-2.0 |
Jim Hahn | d6aa3fa | 2019-06-21 13:19:31 -0400 | [diff] [blame] | 12 | |
Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 13 | 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 Hahn | d6aa3fa | 2019-06-21 13:19:31 -0400 | [diff] [blame] | 21 | <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 Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 23 | |
Jim Hahn | d6aa3fa | 2019-06-21 13:19:31 -0400 | [diff] [blame] | 24 | <modelVersion>4.0.0</modelVersion> |
Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 25 | |
Jim Hahn | d6aa3fa | 2019-06-21 13:19:31 -0400 | [diff] [blame] | 26 | <artifactId>integrity-monitor</artifactId> |
Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 27 | |
Jim Hahn | d6aa3fa | 2019-06-21 13:19:31 -0400 | [diff] [blame] | 28 | <packaging>jar</packaging> |
Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 29 | |
Jim Hahn | d6aa3fa | 2019-06-21 13:19:31 -0400 | [diff] [blame] | 30 | <parent> |
| 31 | <groupId>org.onap.policy.common</groupId> |
| 32 | <artifactId>common-modules</artifactId> |
Jim Hahn | 0b7b9cf | 2021-03-10 14:27:32 -0500 | [diff] [blame] | 33 | <version>1.9.0-SNAPSHOT</version> |
Jim Hahn | d6aa3fa | 2019-06-21 13:19:31 -0400 | [diff] [blame] | 34 | </parent> |
Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 35 | |
Jim Hahn | d6aa3fa | 2019-06-21 13:19:31 -0400 | [diff] [blame] | 36 | <name>Integrity Monitor</name> |
| 37 | |
| 38 | <dependencies> |
| 39 | <dependency> |
Jim Hahn | 37b7d29 | 2018-06-21 15:43:32 -0400 | [diff] [blame] | 40 | <groupId>org.powermock</groupId> |
HOCKLA | 6139460 | 2020-01-09 11:48:49 -0600 | [diff] [blame] | 41 | <artifactId>powermock-api-mockito2</artifactId> |
Jim Hahn | 37b7d29 | 2018-06-21 15:43:32 -0400 | [diff] [blame] | 42 | <scope>test</scope> |
| 43 | </dependency> |
Jim Hahn | d6aa3fa | 2019-06-21 13:19:31 -0400 | [diff] [blame] | 44 | <dependency> |
| 45 | <groupId>junit</groupId> |
| 46 | <artifactId>junit</artifactId> |
| 47 | <scope>test</scope> |
| 48 | </dependency> |
| 49 | <dependency> |
Jim Hahn | d6aa3fa | 2019-06-21 13:19:31 -0400 | [diff] [blame] | 50 | <groupId>com.h2database</groupId> |
| 51 | <artifactId>h2</artifactId> |
| 52 | </dependency> |
| 53 | <dependency> |
| 54 | <groupId>org.eclipse.persistence</groupId> |
Jim Hahn | d6aa3fa | 2019-06-21 13:19:31 -0400 | [diff] [blame] | 55 | <artifactId>eclipselink</artifactId> |
| 56 | </dependency> |
| 57 | <dependency> |
Jim Hahn | b52c7f2 | 2019-06-24 08:41:18 -0400 | [diff] [blame] | 58 | <groupId>org.projectlombok</groupId> |
| 59 | <artifactId>lombok</artifactId> |
| 60 | <scope>provided</scope> |
| 61 | </dependency> |
| 62 | <dependency> |
Jim Hahn | d6aa3fa | 2019-06-21 13:19:31 -0400 | [diff] [blame] | 63 | <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> |
RossC | 6a384a2 | 2020-07-01 16:45:01 +0100 | [diff] [blame] | 86 | <version>1.2</version> |
Jim Hahn | d6aa3fa | 2019-06-21 13:19:31 -0400 | [diff] [blame] | 87 | <scope>test</scope> |
| 88 | </dependency> |
| 89 | </dependencies> |
Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 90 | </project> |