Jim Hahn | 8666407 | 2018-02-09 12:20:56 -0500 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | ONAP Policy Engine - Common Modules |
| 4 | ================================================================================ |
Jim Hahn | 98d2ab1 | 2021-02-04 17:12:46 -0500 | [diff] [blame] | 5 | Copyright (C) 2018-2021 AT&T Intellectual Property. All rights reserved. |
adheli.tavares | 1cb818e | 2021-04-09 11:51:05 +0100 | [diff] [blame] | 6 | Modifications Copyright (C) 2021 Nordix Foundation. |
Jim Hahn | 8666407 | 2018-02-09 12:20:56 -0500 | [diff] [blame] | 7 | ================================================================================ |
| 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 |
Jim Hahn | 98d2ab1 | 2021-02-04 17:12:46 -0500 | [diff] [blame] | 11 | |
Jim Hahn | 8666407 | 2018-02-09 12:20:56 -0500 | [diff] [blame] | 12 | http://www.apache.org/licenses/LICENSE-2.0 |
Jim Hahn | 98d2ab1 | 2021-02-04 17:12:46 -0500 | [diff] [blame] | 13 | |
Jim Hahn | 8666407 | 2018-02-09 12:20:56 -0500 | [diff] [blame] | 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 | |
liamfallon | 2128942 | 2019-04-04 13:26:58 +0000 | [diff] [blame] | 22 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 23 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
ramverma | 95751fd | 2018-08-28 14:09:39 +0100 | [diff] [blame] | 24 | <modelVersion>4.0.0</modelVersion> |
Jim Hahn | 8666407 | 2018-02-09 12:20:56 -0500 | [diff] [blame] | 25 | |
ramverma | 95751fd | 2018-08-28 14:09:39 +0100 | [diff] [blame] | 26 | <parent> |
| 27 | <groupId>org.onap.policy.common</groupId> |
| 28 | <artifactId>common-modules</artifactId> |
Jim Hahn | 0b7b9cf | 2021-03-10 14:27:32 -0500 | [diff] [blame] | 29 | <version>1.9.0-SNAPSHOT</version> |
ramverma | 95751fd | 2018-08-28 14:09:39 +0100 | [diff] [blame] | 30 | </parent> |
| 31 | |
| 32 | <artifactId>utils</artifactId> |
| 33 | <description>Common Utilities</description> |
| 34 | <packaging>jar</packaging> |
| 35 | |
ramverma | 95751fd | 2018-08-28 14:09:39 +0100 | [diff] [blame] | 36 | <dependencies> |
| 37 | <dependency> |
Jim Hahn | fe23721 | 2020-01-10 16:59:48 -0500 | [diff] [blame] | 38 | <groupId>javax.xml.bind</groupId> |
| 39 | <artifactId>jaxb-api</artifactId> |
| 40 | <version>${version.javax.bind}</version> |
| 41 | </dependency> |
| 42 | <dependency> |
Jim Hahn | 173c4db | 2019-09-09 16:51:32 -0400 | [diff] [blame] | 43 | <groupId>org.yaml</groupId> |
| 44 | <artifactId>snakeyaml</artifactId> |
| 45 | </dependency> |
| 46 | <dependency> |
Jim Hahn | c612946 | 2019-01-23 14:25:12 -0500 | [diff] [blame] | 47 | <groupId>com.google.code.gson</groupId> |
| 48 | <artifactId>gson</artifactId> |
| 49 | </dependency> |
| 50 | <dependency> |
Jim Hahn | 1162f4b | 2019-03-11 11:37:53 -0400 | [diff] [blame] | 51 | <groupId>org.onap.policy.common</groupId> |
| 52 | <artifactId>capabilities</artifactId> |
| 53 | <version>${project.version}</version> |
| 54 | </dependency> |
| 55 | <dependency> |
Jim Hahn | ea29ed1 | 2019-04-10 20:08:30 -0400 | [diff] [blame] | 56 | <groupId>org.onap.policy.common</groupId> |
| 57 | <artifactId>gson</artifactId> |
| 58 | <version>${project.version}</version> |
| 59 | </dependency> |
| 60 | <dependency> |
ramverma | 95751fd | 2018-08-28 14:09:39 +0100 | [diff] [blame] | 61 | <groupId>org.apache.commons</groupId> |
| 62 | <artifactId>commons-lang3</artifactId> |
ramverma | 95751fd | 2018-08-28 14:09:39 +0100 | [diff] [blame] | 63 | </dependency> |
| 64 | <dependency> |
Jim Hahn | d3e074c | 2020-06-30 09:14:51 -0400 | [diff] [blame] | 65 | <groupId>commons-net</groupId> |
| 66 | <artifactId>commons-net</artifactId> |
| 67 | <version>3.6</version> |
| 68 | </dependency> |
| 69 | <dependency> |
Chou, Joseph | d574a2f | 2019-03-07 11:49:23 -0500 | [diff] [blame] | 70 | <groupId>com.google.guava</groupId> |
| 71 | <artifactId>guava</artifactId> |
| 72 | </dependency> |
| 73 | <dependency> |
Jim Hahn | a56d392 | 2020-04-03 09:44:26 -0400 | [diff] [blame] | 74 | <groupId>com.google.re2j</groupId> |
| 75 | <artifactId>re2j</artifactId> |
| 76 | </dependency> |
| 77 | <dependency> |
ramverma | 95751fd | 2018-08-28 14:09:39 +0100 | [diff] [blame] | 78 | <groupId>junit</groupId> |
| 79 | <artifactId>junit</artifactId> |
| 80 | <scope>test</scope> |
| 81 | </dependency> |
| 82 | <dependency> |
Jim Hahn | 1162f4b | 2019-03-11 11:37:53 -0400 | [diff] [blame] | 83 | <groupId>ch.qos.logback</groupId> |
| 84 | <artifactId>logback-classic</artifactId> |
Jim Hahn | 1162f4b | 2019-03-11 11:37:53 -0400 | [diff] [blame] | 85 | </dependency> |
| 86 | <dependency> |
Jim Hahn | a2db43a | 2018-11-30 09:28:09 -0500 | [diff] [blame] | 87 | <groupId>org.eclipse.persistence</groupId> |
Jim Hahn | 98d2ab1 | 2021-02-04 17:12:46 -0500 | [diff] [blame] | 88 | <artifactId>eclipselink</artifactId> |
ramverma | 95751fd | 2018-08-28 14:09:39 +0100 | [diff] [blame] | 89 | </dependency> |
| 90 | <dependency> |
jhh | 2ce955e | 2020-01-27 06:45:07 -0600 | [diff] [blame] | 91 | <groupId>com.worldturner.medeia</groupId> |
| 92 | <artifactId>medeia-validator-gson</artifactId> |
RossC | 6a384a2 | 2020-07-01 16:45:01 +0100 | [diff] [blame] | 93 | <version>1.1.1</version> |
jhh | 2ce955e | 2020-01-27 06:45:07 -0600 | [diff] [blame] | 94 | </dependency> |
| 95 | <dependency> |
liamfallon | 2128942 | 2019-04-04 13:26:58 +0000 | [diff] [blame] | 96 | <groupId>org.projectlombok</groupId> |
| 97 | <artifactId>lombok</artifactId> |
| 98 | <scope>provided</scope> |
| 99 | </dependency> |
| 100 | <dependency> |
ramverma | 95751fd | 2018-08-28 14:09:39 +0100 | [diff] [blame] | 101 | <groupId>org.slf4j</groupId> |
| 102 | <artifactId>slf4j-api</artifactId> |
| 103 | <scope>provided</scope> |
| 104 | </dependency> |
| 105 | <dependency> |
| 106 | <groupId>org.powermock</groupId> |
HOCKLA | 6139460 | 2020-01-09 11:48:49 -0600 | [diff] [blame] | 107 | <artifactId>powermock-api-mockito2</artifactId> |
ramverma | 95751fd | 2018-08-28 14:09:39 +0100 | [diff] [blame] | 108 | <scope>test</scope> |
| 109 | </dependency> |
| 110 | <dependency> |
| 111 | <groupId>org.powermock</groupId> |
| 112 | <artifactId>powermock-module-junit4</artifactId> |
ramverma | 95751fd | 2018-08-28 14:09:39 +0100 | [diff] [blame] | 113 | <scope>test</scope> |
ramverma | 95751fd | 2018-08-28 14:09:39 +0100 | [diff] [blame] | 114 | </dependency> |
| 115 | <dependency> |
Jim Hahn | b8432fe | 2019-02-27 10:08:55 -0500 | [diff] [blame] | 116 | <groupId>org.assertj</groupId> |
| 117 | <artifactId>assertj-core</artifactId> |
| 118 | <scope>test</scope> |
| 119 | </dependency> |
adheli.tavares | 1cb818e | 2021-04-09 11:51:05 +0100 | [diff] [blame] | 120 | <dependency> |
| 121 | <groupId>commons-cli</groupId> |
| 122 | <artifactId>commons-cli</artifactId> |
| 123 | </dependency> |
Jim Hahn | 601a09f | 2021-05-21 12:19:44 -0400 | [diff] [blame] | 124 | <dependency> |
| 125 | <groupId>commons-io</groupId> |
| 126 | <artifactId>commons-io</artifactId> |
| 127 | </dependency> |
ramverma | 95751fd | 2018-08-28 14:09:39 +0100 | [diff] [blame] | 128 | </dependencies> |
Jim Hahn | 8666407 | 2018-02-09 12:20:56 -0500 | [diff] [blame] | 129 | </project> |