blob: 893aeb1c503c562195c5ae210cc8d126e6f1880d [file] [log] [blame]
mmisb40acf22018-07-20 15:28:25 +01001<!--
2 ============LICENSE_START=======================================================
3 Copyright (C) 2018 Ericsson. All rights reserved.
HOCKLA61394602020-01-09 11:48:49 -06004 Modifications Copyright (C) 2018-2020 AT&T Intellectual Property. All rights reserved.
Hengye2fda6102020-02-29 20:39:45 +08005 Modifications Copyright (C) 2019-2020 Nordix Foundation.
mmisb40acf22018-07-20 15:28:25 +01006 ================================================================================
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
19 SPDX-License-Identifier: Apache-2.0
20 ============LICENSE_END=========================================================
21-->
22
ramvermaf32032b2019-03-06 15:43:11 +000023<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
24 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
mmisb40acf22018-07-20 15:28:25 +010025
26 <modelVersion>4.0.0</modelVersion>
27
28 <parent>
29 <groupId>org.onap.policy.common</groupId>
30 <artifactId>common-modules</artifactId>
Pamela Dragoshf3e77922020-05-19 13:34:34 -040031 <version>1.7.0-SNAPSHOT</version>
mmisb40acf22018-07-20 15:28:25 +010032 </parent>
33
34 <artifactId>policy-endpoints</artifactId>
35
36 <name>policy-endpoints</name>
37 <description>Endpoints</description>
38
39 <properties>
mmisb40acf22018-07-20 15:28:25 +010040 <cambria.version>1.2.1-oss</cambria.version>
mmisb40acf22018-07-20 15:28:25 +010041 <http.client.version>4.5.5</http.client.version>
42 <http.core.version>4.4.4</http.core.version>
43 </properties>
44
45 <dependencies>
mmisb40acf22018-07-20 15:28:25 +010046 <dependency>
47 <groupId>org.onap.policy.common</groupId>
48 <artifactId>capabilities</artifactId>
49 <version>${project.version}</version>
50 </dependency>
51
52 <dependency>
53 <groupId>org.onap.policy.common</groupId>
Jim Hahn4ec725e2019-02-06 13:14:57 -050054 <artifactId>gson</artifactId>
55 <version>${project.version}</version>
56 </dependency>
57
58 <dependency>
59 <groupId>org.onap.policy.common</groupId>
mmisb40acf22018-07-20 15:28:25 +010060 <artifactId>utils</artifactId>
61 <version>${project.version}</version>
62 </dependency>
63
64 <dependency>
a.sreekumar115a58a2019-06-26 10:52:28 +000065 <groupId>org.onap.policy.common</groupId>
66 <artifactId>common-parameters</artifactId>
67 <version>${project.version}</version>
68 </dependency>
69
70 <dependency>
mmisb40acf22018-07-20 15:28:25 +010071 <groupId>com.att.nsa</groupId>
72 <artifactId>cambriaClient</artifactId>
mmisb40acf22018-07-20 15:28:25 +010073 <exclusions>
74 <exclusion>
75 <groupId>org.slf4j</groupId>
76 <artifactId>slf4j-log4j12</artifactId>
77 </exclusion>
78 </exclusions>
79 </dependency>
80
81 <dependency>
82 <groupId>org.onap.dmaap.messagerouter.dmaapclient</groupId>
83 <artifactId>dmaapClient</artifactId>
mmisb40acf22018-07-20 15:28:25 +010084 <exclusions>
85 <exclusion>
86 <groupId>org.slf4j</groupId>
87 <artifactId>slf4j-log4j12</artifactId>
88 </exclusion>
89 <exclusion>
90 <groupId>log4j</groupId>
91 <artifactId>log4j</artifactId>
92 </exclusion>
93 </exclusions>
94 </dependency>
95
96 <dependency>
Jorge Hernandez0d62e1d2018-08-08 10:28:36 -050097 <groupId>org.onap.aaf.authz</groupId>
98 <artifactId>aaf-cadi-aaf</artifactId>
Jorge Hernandez0d62e1d2018-08-08 10:28:36 -050099 </dependency>
100
101 <dependency>
mmisb40acf22018-07-20 15:28:25 +0100102 <groupId>org.eclipse.jetty</groupId>
103 <artifactId>jetty-server</artifactId>
mmisb40acf22018-07-20 15:28:25 +0100104 </dependency>
105
106 <dependency>
107 <groupId>org.eclipse.jetty</groupId>
108 <artifactId>jetty-servlet</artifactId>
mmisb40acf22018-07-20 15:28:25 +0100109 </dependency>
110
111 <dependency>
Hengye2fda6102020-02-29 20:39:45 +0800112 <groupId>org.eclipse.jetty</groupId>
113 <artifactId>jetty-servlets</artifactId>
Hengye2fda6102020-02-29 20:39:45 +0800114 </dependency>
115
116 <dependency>
mmisb40acf22018-07-20 15:28:25 +0100117 <groupId>org.glassfish.jersey.core</groupId>
118 <artifactId>jersey-server</artifactId>
mmisb40acf22018-07-20 15:28:25 +0100119 </dependency>
120
121 <dependency>
122 <groupId>org.glassfish.jersey.containers</groupId>
123 <artifactId>jersey-container-servlet-core</artifactId>
mmisb40acf22018-07-20 15:28:25 +0100124 </dependency>
125
126 <dependency>
mmisb40acf22018-07-20 15:28:25 +0100127 <groupId>org.glassfish.jersey.containers</groupId>
128 <artifactId>jersey-container-jetty-http</artifactId>
mmisb40acf22018-07-20 15:28:25 +0100129 </dependency>
130
131 <dependency>
132 <groupId>org.glassfish.jersey.core</groupId>
133 <artifactId>jersey-client</artifactId>
mmisb40acf22018-07-20 15:28:25 +0100134 </dependency>
Krzysztof Opasiak28f6c6b2019-01-28 21:07:52 +0100135
mmisef849e62018-08-30 13:34:55 +0100136 <dependency>
137 <groupId>org.glassfish.jersey.core</groupId>
138 <artifactId>jersey-common</artifactId>
mmisef849e62018-08-30 13:34:55 +0100139 </dependency>
Krzysztof Opasiak28f6c6b2019-01-28 21:07:52 +0100140
Jim Hahn18914b02019-01-21 12:42:10 -0500141 <dependency>
142 <groupId>com.google.code.gson</groupId>
143 <artifactId>gson</artifactId>
144 </dependency>
mmisb40acf22018-07-20 15:28:25 +0100145
146 <dependency>
147 <groupId>com.fasterxml.jackson.core</groupId>
mmisb40acf22018-07-20 15:28:25 +0100148 <artifactId>jackson-annotations</artifactId>
mmisb40acf22018-07-20 15:28:25 +0100149 </dependency>
150
151 <dependency>
152 <groupId>org.apache.httpcomponents</groupId>
153 <artifactId>httpclient</artifactId>
mmisb40acf22018-07-20 15:28:25 +0100154 </dependency>
155 <dependency>
156 <groupId>org.apache.httpcomponents</groupId>
157 <artifactId>httpcore</artifactId>
mmisb40acf22018-07-20 15:28:25 +0100158 </dependency>
159
160 <dependency>
161 <groupId>io.swagger</groupId>
162 <artifactId>swagger-jersey2-jaxrs</artifactId>
mmisb40acf22018-07-20 15:28:25 +0100163 </dependency>
164
165 <dependency>
166 <groupId>org.apache.commons</groupId>
167 <artifactId>commons-collections4</artifactId>
168 <version>4.1</version>
169 </dependency>
170
171 <dependency>
172 <groupId>ch.qos.logback</groupId>
173 <artifactId>logback-classic</artifactId>
174 </dependency>
175
176 <dependency>
Jim Hahnc064f5e2019-02-13 10:53:12 -0500177 <groupId>org.onap.policy.common</groupId>
178 <artifactId>utils-test</artifactId>
179 <version>${project.version}</version>
180 <scope>test</scope>
181 </dependency>
182
183 <dependency>
mmisb40acf22018-07-20 15:28:25 +0100184 <groupId>junit</groupId>
185 <artifactId>junit</artifactId>
186 <scope>test</scope>
187 </dependency>
Krzysztof Opasiak28f6c6b2019-01-28 21:07:52 +0100188
Jim Hahn82425922018-09-25 11:29:16 -0400189 <dependency>
190 <groupId>org.powermock</groupId>
HOCKLA61394602020-01-09 11:48:49 -0600191 <artifactId>powermock-api-mockito2</artifactId>
Jim Hahn82425922018-09-25 11:29:16 -0400192 <scope>test</scope>
193 </dependency>
Krzysztof Opasiak28f6c6b2019-01-28 21:07:52 +0100194
Jim Hahna392ecb2019-01-08 17:15:07 -0500195 <dependency>
196 <groupId>org.assertj</groupId>
197 <artifactId>assertj-core</artifactId>
Jim Hahna392ecb2019-01-08 17:15:07 -0500198 <scope>test</scope>
199 </dependency>
mmisb40acf22018-07-20 15:28:25 +0100200
ramverma95751fd2018-08-28 14:09:39 +0100201 <dependency>
liamfallon89b8fe52019-11-01 11:21:54 +0000202 <groupId>org.glassfish.jersey.inject</groupId>
203 <artifactId>jersey-hk2</artifactId>
liamfallon89b8fe52019-11-01 11:21:54 +0000204 </dependency>
205
206 <dependency>
ramverma95751fd2018-08-28 14:09:39 +0100207 <groupId>com.openpojo</groupId>
208 <artifactId>openpojo</artifactId>
209 </dependency>
210
ramvermaf32032b2019-03-06 15:43:11 +0000211 <dependency>
212 <groupId>org.projectlombok</groupId>
213 <artifactId>lombok</artifactId>
214 <scope>provided</scope>
215 </dependency>
216
mmisb40acf22018-07-20 15:28:25 +0100217 </dependencies>
218
Pamela Dragoshaf5e28c2018-09-21 12:48:29 -0400219 <build>
220 <plugins>
221 <plugin>
222 <artifactId>maven-checkstyle-plugin</artifactId>
223 <executions>
224 <execution>
225 <id>onap-java-style</id>
226 <goals>
227 <goal>check</goal>
228 </goals>
229 <phase>process-sources</phase>
230 <configuration>
231 <!-- Use Google Java Style Guide:
232 https://github.com/checkstyle/checkstyle/blob/master/src/main/resources/google_checks.xml
233 with minor changes -->
234 <configLocation>onap-checkstyle/onap-java-style.xml</configLocation>
235 <!-- <sourceDirectory> is needed so that checkstyle ignores the generated sources directory -->
HOCKLA79e69312019-12-11 10:24:44 -0600236 <sourceDirectories>${project.build.sourceDirectory}</sourceDirectories>
Pamela Dragoshaf5e28c2018-09-21 12:48:29 -0400237 <includeResources>true</includeResources>
238 <includeTestSourceDirectory>true</includeTestSourceDirectory>
239 <includeTestResources>true</includeTestResources>
240 <excludes>
241 </excludes>
Pamela Dragoshaf5e28c2018-09-21 12:48:29 -0400242 <consoleOutput>true</consoleOutput>
243 <failsOnViolation>true</failsOnViolation>
244 <violationSeverity>warning</violationSeverity>
245 </configuration>
246 </execution>
247 </executions>
248 <dependencies>
249 <dependency>
250 <groupId>org.onap.oparent</groupId>
251 <artifactId>checkstyle</artifactId>
252 <version>${oparent.version}</version>
253 <scope>compile</scope>
254 </dependency>
255 </dependencies>
256 </plugin>
257 </plugins>
258 </build>
mmisb40acf22018-07-20 15:28:25 +0100259</project>