Jim Hahn | 8666407 | 2018-02-09 12:20:56 -0500 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | ONAP Policy Engine - Common Modules |
| 4 | ================================================================================ |
HOCKLA | 6139460 | 2020-01-09 11:48:49 -0600 | [diff] [blame] | 5 | Copyright (C) 2018-2020 AT&T Intellectual Property. All rights reserved. |
Jim Hahn | 8666407 | 2018-02-09 12:20:56 -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 |
| 10 | |
| 11 | http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | |
| 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 | |
liamfallon | 2128942 | 2019-04-04 13:26:58 +0000 | [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/xsd/maven-4.0.0.xsd"> |
ramverma | 95751fd | 2018-08-28 14:09:39 +0100 | [diff] [blame] | 23 | <modelVersion>4.0.0</modelVersion> |
Jim Hahn | 8666407 | 2018-02-09 12:20:56 -0500 | [diff] [blame] | 24 | |
ramverma | 95751fd | 2018-08-28 14:09:39 +0100 | [diff] [blame] | 25 | <parent> |
| 26 | <groupId>org.onap.policy.common</groupId> |
| 27 | <artifactId>common-modules</artifactId> |
HOCKLA | e20940f | 2019-12-06 14:29:46 -0600 | [diff] [blame] | 28 | <version>1.6.2-SNAPSHOT</version> |
ramverma | 95751fd | 2018-08-28 14:09:39 +0100 | [diff] [blame] | 29 | </parent> |
| 30 | |
| 31 | <artifactId>utils</artifactId> |
| 32 | <description>Common Utilities</description> |
| 33 | <packaging>jar</packaging> |
| 34 | |
ramverma | 95751fd | 2018-08-28 14:09:39 +0100 | [diff] [blame] | 35 | <dependencies> |
| 36 | <dependency> |
Jim Hahn | fe23721 | 2020-01-10 16:59:48 -0500 | [diff] [blame] | 37 | <groupId>javax.xml.bind</groupId> |
| 38 | <artifactId>jaxb-api</artifactId> |
| 39 | <version>${version.javax.bind}</version> |
| 40 | </dependency> |
| 41 | <dependency> |
Jim Hahn | 173c4db | 2019-09-09 16:51:32 -0400 | [diff] [blame] | 42 | <groupId>org.yaml</groupId> |
| 43 | <artifactId>snakeyaml</artifactId> |
| 44 | </dependency> |
| 45 | <dependency> |
Jim Hahn | c612946 | 2019-01-23 14:25:12 -0500 | [diff] [blame] | 46 | <groupId>com.google.code.gson</groupId> |
| 47 | <artifactId>gson</artifactId> |
| 48 | </dependency> |
| 49 | <dependency> |
Jim Hahn | 1162f4b | 2019-03-11 11:37:53 -0400 | [diff] [blame] | 50 | <groupId>org.onap.policy.common</groupId> |
| 51 | <artifactId>capabilities</artifactId> |
| 52 | <version>${project.version}</version> |
| 53 | </dependency> |
| 54 | <dependency> |
Jim Hahn | ea29ed1 | 2019-04-10 20:08:30 -0400 | [diff] [blame] | 55 | <groupId>org.onap.policy.common</groupId> |
| 56 | <artifactId>gson</artifactId> |
| 57 | <version>${project.version}</version> |
| 58 | </dependency> |
| 59 | <dependency> |
ramverma | 95751fd | 2018-08-28 14:09:39 +0100 | [diff] [blame] | 60 | <groupId>org.apache.commons</groupId> |
| 61 | <artifactId>commons-lang3</artifactId> |
ramverma | 95751fd | 2018-08-28 14:09:39 +0100 | [diff] [blame] | 62 | </dependency> |
| 63 | <dependency> |
Chou, Joseph | d574a2f | 2019-03-07 11:49:23 -0500 | [diff] [blame] | 64 | <groupId>com.google.guava</groupId> |
| 65 | <artifactId>guava</artifactId> |
| 66 | </dependency> |
| 67 | <dependency> |
ramverma | 95751fd | 2018-08-28 14:09:39 +0100 | [diff] [blame] | 68 | <groupId>junit</groupId> |
| 69 | <artifactId>junit</artifactId> |
| 70 | <scope>test</scope> |
| 71 | </dependency> |
| 72 | <dependency> |
Jim Hahn | 1162f4b | 2019-03-11 11:37:53 -0400 | [diff] [blame] | 73 | <groupId>ch.qos.logback</groupId> |
| 74 | <artifactId>logback-classic</artifactId> |
| 75 | <scope>test</scope> |
| 76 | </dependency> |
| 77 | <dependency> |
Jim Hahn | a2db43a | 2018-11-30 09:28:09 -0500 | [diff] [blame] | 78 | <groupId>org.eclipse.persistence</groupId> |
| 79 | <artifactId>javax.persistence</artifactId> |
ramverma | 95751fd | 2018-08-28 14:09:39 +0100 | [diff] [blame] | 80 | </dependency> |
| 81 | <dependency> |
jhh | 2ce955e | 2020-01-27 06:45:07 -0600 | [diff] [blame] | 82 | <groupId>com.worldturner.medeia</groupId> |
| 83 | <artifactId>medeia-validator-gson</artifactId> |
| 84 | <version>1.1.0</version> |
| 85 | </dependency> |
| 86 | <dependency> |
liamfallon | 2128942 | 2019-04-04 13:26:58 +0000 | [diff] [blame] | 87 | <groupId>org.projectlombok</groupId> |
| 88 | <artifactId>lombok</artifactId> |
| 89 | <scope>provided</scope> |
| 90 | </dependency> |
| 91 | <dependency> |
ramverma | 95751fd | 2018-08-28 14:09:39 +0100 | [diff] [blame] | 92 | <groupId>org.slf4j</groupId> |
| 93 | <artifactId>slf4j-api</artifactId> |
| 94 | <scope>provided</scope> |
| 95 | </dependency> |
| 96 | <dependency> |
| 97 | <groupId>org.powermock</groupId> |
HOCKLA | 6139460 | 2020-01-09 11:48:49 -0600 | [diff] [blame] | 98 | <artifactId>powermock-api-mockito2</artifactId> |
ramverma | 95751fd | 2018-08-28 14:09:39 +0100 | [diff] [blame] | 99 | <scope>test</scope> |
| 100 | </dependency> |
| 101 | <dependency> |
| 102 | <groupId>org.powermock</groupId> |
| 103 | <artifactId>powermock-module-junit4</artifactId> |
ramverma | 95751fd | 2018-08-28 14:09:39 +0100 | [diff] [blame] | 104 | <scope>test</scope> |
ramverma | 95751fd | 2018-08-28 14:09:39 +0100 | [diff] [blame] | 105 | </dependency> |
| 106 | <dependency> |
Jim Hahn | b8432fe | 2019-02-27 10:08:55 -0500 | [diff] [blame] | 107 | <groupId>org.assertj</groupId> |
| 108 | <artifactId>assertj-core</artifactId> |
| 109 | <scope>test</scope> |
| 110 | </dependency> |
| 111 | <dependency> |
ramverma | 95751fd | 2018-08-28 14:09:39 +0100 | [diff] [blame] | 112 | <groupId>com.openpojo</groupId> |
| 113 | <artifactId>openpojo</artifactId> |
| 114 | <scope>compile</scope> |
| 115 | </dependency> |
| 116 | <dependency> |
| 117 | <groupId>org.hamcrest</groupId> |
| 118 | <artifactId>hamcrest-core</artifactId> |
| 119 | <version>1.3</version> |
| 120 | </dependency> |
| 121 | </dependencies> |
| 122 | |
| 123 | <build> |
| 124 | <pluginManagement> |
| 125 | <plugins> |
| 126 | <!--This plugin's configuration is used to store Eclipse m2e settings |
| 127 | only. It has no influence on the Maven build itself. --> |
| 128 | <plugin> |
| 129 | <groupId>org.eclipse.m2e</groupId> |
| 130 | <artifactId>lifecycle-mapping</artifactId> |
| 131 | <version>1.0.0</version> |
| 132 | <configuration> |
| 133 | <lifecycleMappingMetadata> |
| 134 | <pluginExecutions> |
| 135 | <pluginExecution> |
| 136 | <pluginExecutionFilter> |
| 137 | <groupId>org.jacoco</groupId> |
| 138 | <artifactId> |
| 139 | jacoco-maven-plugin |
| 140 | </artifactId> |
| 141 | <versionRange> |
| 142 | [0.7.1.201405082137,) |
| 143 | </versionRange> |
| 144 | <goals> |
| 145 | <goal>prepare-agent</goal> |
| 146 | </goals> |
| 147 | </pluginExecutionFilter> |
| 148 | <action> |
liamfallon | 2f72ab6 | 2018-10-31 15:23:33 +0000 | [diff] [blame] | 149 | <ignore /> |
ramverma | 95751fd | 2018-08-28 14:09:39 +0100 | [diff] [blame] | 150 | </action> |
| 151 | </pluginExecution> |
| 152 | </pluginExecutions> |
| 153 | </lifecycleMappingMetadata> |
| 154 | </configuration> |
| 155 | </plugin> |
| 156 | </plugins> |
| 157 | </pluginManagement> |
| 158 | </build> |
Jim Hahn | 8666407 | 2018-02-09 12:20:56 -0500 | [diff] [blame] | 159 | </project> |