blob: 98afe39c14938e3c9ab9b18d0dcfa59982f5d2b9 [file] [log] [blame]
Jim Hahn86664072018-02-09 12:20:56 -05001<!--
2 ============LICENSE_START=======================================================
3 ONAP Policy Engine - Common Modules
4 ================================================================================
HOCKLA61394602020-01-09 11:48:49 -06005 Copyright (C) 2018-2020 AT&T Intellectual Property. All rights reserved.
Jim Hahn86664072018-02-09 12:20:56 -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
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
liamfallon21289422019-04-04 13:26:58 +000021<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">
ramverma95751fd2018-08-28 14:09:39 +010023 <modelVersion>4.0.0</modelVersion>
Jim Hahn86664072018-02-09 12:20:56 -050024
ramverma95751fd2018-08-28 14:09:39 +010025 <parent>
26 <groupId>org.onap.policy.common</groupId>
27 <artifactId>common-modules</artifactId>
HOCKLAe20940f2019-12-06 14:29:46 -060028 <version>1.6.2-SNAPSHOT</version>
ramverma95751fd2018-08-28 14:09:39 +010029 </parent>
30
31 <artifactId>utils</artifactId>
32 <description>Common Utilities</description>
33 <packaging>jar</packaging>
34
ramverma95751fd2018-08-28 14:09:39 +010035 <dependencies>
36 <dependency>
Jim Hahnfe237212020-01-10 16:59:48 -050037 <groupId>javax.xml.bind</groupId>
38 <artifactId>jaxb-api</artifactId>
39 <version>${version.javax.bind}</version>
40 </dependency>
41 <dependency>
Jim Hahn173c4db2019-09-09 16:51:32 -040042 <groupId>org.yaml</groupId>
43 <artifactId>snakeyaml</artifactId>
44 </dependency>
45 <dependency>
Jim Hahnc6129462019-01-23 14:25:12 -050046 <groupId>com.google.code.gson</groupId>
47 <artifactId>gson</artifactId>
48 </dependency>
49 <dependency>
Jim Hahn1162f4b2019-03-11 11:37:53 -040050 <groupId>org.onap.policy.common</groupId>
51 <artifactId>capabilities</artifactId>
52 <version>${project.version}</version>
53 </dependency>
54 <dependency>
Jim Hahnea29ed12019-04-10 20:08:30 -040055 <groupId>org.onap.policy.common</groupId>
56 <artifactId>gson</artifactId>
57 <version>${project.version}</version>
58 </dependency>
59 <dependency>
ramverma95751fd2018-08-28 14:09:39 +010060 <groupId>org.apache.commons</groupId>
61 <artifactId>commons-lang3</artifactId>
ramverma95751fd2018-08-28 14:09:39 +010062 </dependency>
63 <dependency>
Chou, Josephd574a2f2019-03-07 11:49:23 -050064 <groupId>com.google.guava</groupId>
65 <artifactId>guava</artifactId>
66 </dependency>
67 <dependency>
ramverma95751fd2018-08-28 14:09:39 +010068 <groupId>junit</groupId>
69 <artifactId>junit</artifactId>
70 <scope>test</scope>
71 </dependency>
72 <dependency>
Jim Hahn1162f4b2019-03-11 11:37:53 -040073 <groupId>ch.qos.logback</groupId>
74 <artifactId>logback-classic</artifactId>
75 <scope>test</scope>
76 </dependency>
77 <dependency>
Jim Hahna2db43a2018-11-30 09:28:09 -050078 <groupId>org.eclipse.persistence</groupId>
79 <artifactId>javax.persistence</artifactId>
ramverma95751fd2018-08-28 14:09:39 +010080 </dependency>
81 <dependency>
jhh2ce955e2020-01-27 06:45:07 -060082 <groupId>com.worldturner.medeia</groupId>
83 <artifactId>medeia-validator-gson</artifactId>
84 <version>1.1.0</version>
85 </dependency>
86 <dependency>
liamfallon21289422019-04-04 13:26:58 +000087 <groupId>org.projectlombok</groupId>
88 <artifactId>lombok</artifactId>
89 <scope>provided</scope>
90 </dependency>
91 <dependency>
ramverma95751fd2018-08-28 14:09:39 +010092 <groupId>org.slf4j</groupId>
93 <artifactId>slf4j-api</artifactId>
94 <scope>provided</scope>
95 </dependency>
96 <dependency>
97 <groupId>org.powermock</groupId>
HOCKLA61394602020-01-09 11:48:49 -060098 <artifactId>powermock-api-mockito2</artifactId>
ramverma95751fd2018-08-28 14:09:39 +010099 <scope>test</scope>
100 </dependency>
101 <dependency>
102 <groupId>org.powermock</groupId>
103 <artifactId>powermock-module-junit4</artifactId>
ramverma95751fd2018-08-28 14:09:39 +0100104 <scope>test</scope>
ramverma95751fd2018-08-28 14:09:39 +0100105 </dependency>
106 <dependency>
Jim Hahnb8432fe2019-02-27 10:08:55 -0500107 <groupId>org.assertj</groupId>
108 <artifactId>assertj-core</artifactId>
109 <scope>test</scope>
110 </dependency>
111 <dependency>
ramverma95751fd2018-08-28 14:09:39 +0100112 <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>
liamfallon2f72ab62018-10-31 15:23:33 +0000149 <ignore />
ramverma95751fd2018-08-28 14:09:39 +0100150 </action>
151 </pluginExecution>
152 </pluginExecutions>
153 </lifecycleMappingMetadata>
154 </configuration>
155 </plugin>
156 </plugins>
157 </pluginManagement>
158 </build>
Jim Hahn86664072018-02-09 12:20:56 -0500159</project>