blob: 4ed6bde29cefbac27bc6f363e945b11b48d059a4 [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>
Ram Krishna Verma36a86462020-07-09 13:26:45 -040031 <version>1.7.1-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>
mmisb40acf22018-07-20 15:28:25 +0100147 <groupId>org.apache.httpcomponents</groupId>
148 <artifactId>httpclient</artifactId>
mmisb40acf22018-07-20 15:28:25 +0100149 </dependency>
150 <dependency>
151 <groupId>org.apache.httpcomponents</groupId>
152 <artifactId>httpcore</artifactId>
mmisb40acf22018-07-20 15:28:25 +0100153 </dependency>
154
155 <dependency>
156 <groupId>io.swagger</groupId>
157 <artifactId>swagger-jersey2-jaxrs</artifactId>
mmisb40acf22018-07-20 15:28:25 +0100158 </dependency>
159
160 <dependency>
161 <groupId>org.apache.commons</groupId>
162 <artifactId>commons-collections4</artifactId>
RossC6a384a22020-07-01 16:45:01 +0100163 <version>4.4</version>
mmisb40acf22018-07-20 15:28:25 +0100164 </dependency>
165
166 <dependency>
167 <groupId>ch.qos.logback</groupId>
168 <artifactId>logback-classic</artifactId>
169 </dependency>
170
171 <dependency>
Jim Hahnc064f5e2019-02-13 10:53:12 -0500172 <groupId>org.onap.policy.common</groupId>
173 <artifactId>utils-test</artifactId>
174 <version>${project.version}</version>
175 <scope>test</scope>
176 </dependency>
177
178 <dependency>
mmisb40acf22018-07-20 15:28:25 +0100179 <groupId>junit</groupId>
180 <artifactId>junit</artifactId>
181 <scope>test</scope>
182 </dependency>
Krzysztof Opasiak28f6c6b2019-01-28 21:07:52 +0100183
Jim Hahn82425922018-09-25 11:29:16 -0400184 <dependency>
185 <groupId>org.powermock</groupId>
HOCKLA61394602020-01-09 11:48:49 -0600186 <artifactId>powermock-api-mockito2</artifactId>
Jim Hahn82425922018-09-25 11:29:16 -0400187 <scope>test</scope>
188 </dependency>
Krzysztof Opasiak28f6c6b2019-01-28 21:07:52 +0100189
Jim Hahna392ecb2019-01-08 17:15:07 -0500190 <dependency>
191 <groupId>org.assertj</groupId>
192 <artifactId>assertj-core</artifactId>
Jim Hahna392ecb2019-01-08 17:15:07 -0500193 <scope>test</scope>
194 </dependency>
mmisb40acf22018-07-20 15:28:25 +0100195
ramverma95751fd2018-08-28 14:09:39 +0100196 <dependency>
liamfallon89b8fe52019-11-01 11:21:54 +0000197 <groupId>org.glassfish.jersey.inject</groupId>
198 <artifactId>jersey-hk2</artifactId>
liamfallon89b8fe52019-11-01 11:21:54 +0000199 </dependency>
200
201 <dependency>
ramverma95751fd2018-08-28 14:09:39 +0100202 <groupId>com.openpojo</groupId>
203 <artifactId>openpojo</artifactId>
204 </dependency>
205
ramvermaf32032b2019-03-06 15:43:11 +0000206 <dependency>
207 <groupId>org.projectlombok</groupId>
208 <artifactId>lombok</artifactId>
209 <scope>provided</scope>
210 </dependency>
211
mmisb40acf22018-07-20 15:28:25 +0100212 </dependencies>
213
Pamela Dragoshaf5e28c2018-09-21 12:48:29 -0400214 <build>
215 <plugins>
216 <plugin>
217 <artifactId>maven-checkstyle-plugin</artifactId>
218 <executions>
219 <execution>
220 <id>onap-java-style</id>
221 <goals>
222 <goal>check</goal>
223 </goals>
224 <phase>process-sources</phase>
225 <configuration>
226 <!-- Use Google Java Style Guide:
227 https://github.com/checkstyle/checkstyle/blob/master/src/main/resources/google_checks.xml
228 with minor changes -->
229 <configLocation>onap-checkstyle/onap-java-style.xml</configLocation>
230 <!-- <sourceDirectory> is needed so that checkstyle ignores the generated sources directory -->
HOCKLA79e69312019-12-11 10:24:44 -0600231 <sourceDirectories>${project.build.sourceDirectory}</sourceDirectories>
Pamela Dragoshaf5e28c2018-09-21 12:48:29 -0400232 <includeResources>true</includeResources>
233 <includeTestSourceDirectory>true</includeTestSourceDirectory>
234 <includeTestResources>true</includeTestResources>
235 <excludes>
236 </excludes>
Pamela Dragoshaf5e28c2018-09-21 12:48:29 -0400237 <consoleOutput>true</consoleOutput>
238 <failsOnViolation>true</failsOnViolation>
239 <violationSeverity>warning</violationSeverity>
240 </configuration>
241 </execution>
242 </executions>
243 <dependencies>
244 <dependency>
245 <groupId>org.onap.oparent</groupId>
246 <artifactId>checkstyle</artifactId>
247 <version>${oparent.version}</version>
248 <scope>compile</scope>
249 </dependency>
250 </dependencies>
251 </plugin>
252 </plugins>
253 </build>
mmisb40acf22018-07-20 15:28:25 +0100254</project>