blob: 1d8ae53c6ad394478c69f2171184035ff0536534 [file] [log] [blame]
mmisb40acf22018-07-20 15:28:25 +01001<!--
2 ============LICENSE_START=======================================================
3 Copyright (C) 2018 Ericsson. All rights reserved.
Jim Hahna392ecb2019-01-08 17:15:07 -05004 Modifications Copyright (C) 2018-2019 AT&T Intellectual Property. All rights reserved.
mmisb40acf22018-07-20 15:28:25 +01005 ================================================================================
6 Licensed under the Apache License, Version 2.0 (the "License");
7 you may not use this file except in compliance with the License.
8 You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 Unless required by applicable law or agreed to in writing, software
13 distributed under the License is distributed on an "AS IS" BASIS,
14 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 See the License for the specific language governing permissions and
16 limitations under the License.
17
18 SPDX-License-Identifier: Apache-2.0
19 ============LICENSE_END=========================================================
20-->
21
liamfallon2f72ab62018-10-31 15:23:33 +000022<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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 +010023
24 <modelVersion>4.0.0</modelVersion>
25
26 <parent>
27 <groupId>org.onap.policy.common</groupId>
28 <artifactId>common-modules</artifactId>
liamfallon2f72ab62018-10-31 15:23:33 +000029 <version>1.4.0-SNAPSHOT</version>
mmisb40acf22018-07-20 15:28:25 +010030 </parent>
31
32 <artifactId>policy-endpoints</artifactId>
33
34 <name>policy-endpoints</name>
35 <description>Endpoints</description>
36
37 <properties>
mmisb40acf22018-07-20 15:28:25 +010038 <jersey.swagger.version>1.5.18</jersey.swagger.version>
mmisb40acf22018-07-20 15:28:25 +010039 <cambria.version>1.2.1-oss</cambria.version>
mmisb40acf22018-07-20 15:28:25 +010040 <jackson.version>2.9.5</jackson.version>
41 <http.client.version>4.5.5</http.client.version>
42 <http.core.version>4.4.4</http.core.version>
43 </properties>
44
45 <dependencies>
46
47 <dependency>
48 <groupId>org.onap.policy.common</groupId>
49 <artifactId>capabilities</artifactId>
50 <version>${project.version}</version>
51 </dependency>
52
53 <dependency>
54 <groupId>org.onap.policy.common</groupId>
Jim Hahn4ec725e2019-02-06 13:14:57 -050055 <artifactId>gson</artifactId>
56 <version>${project.version}</version>
57 </dependency>
58
59 <dependency>
60 <groupId>org.onap.policy.common</groupId>
mmisb40acf22018-07-20 15:28:25 +010061 <artifactId>utils</artifactId>
62 <version>${project.version}</version>
63 </dependency>
64
65 <dependency>
66 <groupId>com.att.nsa</groupId>
67 <artifactId>cambriaClient</artifactId>
mmisb40acf22018-07-20 15:28:25 +010068 <exclusions>
69 <exclusion>
70 <groupId>org.slf4j</groupId>
71 <artifactId>slf4j-log4j12</artifactId>
72 </exclusion>
73 </exclusions>
74 </dependency>
75
76 <dependency>
77 <groupId>org.onap.dmaap.messagerouter.dmaapclient</groupId>
78 <artifactId>dmaapClient</artifactId>
mmisb40acf22018-07-20 15:28:25 +010079 <exclusions>
80 <exclusion>
81 <groupId>org.slf4j</groupId>
82 <artifactId>slf4j-log4j12</artifactId>
83 </exclusion>
84 <exclusion>
85 <groupId>log4j</groupId>
86 <artifactId>log4j</artifactId>
87 </exclusion>
88 </exclusions>
89 </dependency>
90
91 <dependency>
Jorge Hernandez0d62e1d2018-08-08 10:28:36 -050092 <groupId>org.onap.aaf.authz</groupId>
93 <artifactId>aaf-cadi-aaf</artifactId>
Jorge Hernandez0d62e1d2018-08-08 10:28:36 -050094 </dependency>
95
96 <dependency>
mmisb40acf22018-07-20 15:28:25 +010097 <groupId>org.eclipse.jetty</groupId>
98 <artifactId>jetty-server</artifactId>
mmisb40acf22018-07-20 15:28:25 +010099 </dependency>
100
101 <dependency>
102 <groupId>org.eclipse.jetty</groupId>
103 <artifactId>jetty-servlet</artifactId>
mmisb40acf22018-07-20 15:28:25 +0100104 </dependency>
105
106 <dependency>
107 <groupId>org.glassfish.jersey.core</groupId>
108 <artifactId>jersey-server</artifactId>
109 <version>${jersey.version}</version>
110 </dependency>
111
112 <dependency>
113 <groupId>org.glassfish.jersey.containers</groupId>
114 <artifactId>jersey-container-servlet-core</artifactId>
115 <version>${jersey.version}</version>
116 </dependency>
117
118 <dependency>
mmisb40acf22018-07-20 15:28:25 +0100119 <groupId>org.glassfish.jersey.containers</groupId>
120 <artifactId>jersey-container-jetty-http</artifactId>
121 <version>${jersey.version}</version>
122 <exclusions>
123 <exclusion>
124 <groupId>org.eclipse.jetty</groupId>
125 <artifactId>jetty-util</artifactId>
126 </exclusion>
127 </exclusions>
128 </dependency>
129
130 <dependency>
131 <groupId>org.glassfish.jersey.core</groupId>
132 <artifactId>jersey-client</artifactId>
133 <version>${jersey.version}</version>
134 </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>
139 <version>${jersey.version}</version>
140 </dependency>
Krzysztof Opasiak28f6c6b2019-01-28 21:07:52 +0100141
Jim Hahn18914b02019-01-21 12:42:10 -0500142 <dependency>
143 <groupId>com.google.code.gson</groupId>
144 <artifactId>gson</artifactId>
145 </dependency>
mmisb40acf22018-07-20 15:28:25 +0100146
147 <dependency>
148 <groupId>com.fasterxml.jackson.core</groupId>
mmisb40acf22018-07-20 15:28:25 +0100149 <artifactId>jackson-annotations</artifactId>
150 <version>${jackson.version}</version>
151 </dependency>
152
153 <dependency>
154 <groupId>org.apache.httpcomponents</groupId>
155 <artifactId>httpclient</artifactId>
mmisb40acf22018-07-20 15:28:25 +0100156 </dependency>
157 <dependency>
158 <groupId>org.apache.httpcomponents</groupId>
159 <artifactId>httpcore</artifactId>
mmisb40acf22018-07-20 15:28:25 +0100160 </dependency>
161
162 <dependency>
163 <groupId>io.swagger</groupId>
164 <artifactId>swagger-jersey2-jaxrs</artifactId>
mmisb40acf22018-07-20 15:28:25 +0100165 </dependency>
166
167 <dependency>
168 <groupId>org.apache.commons</groupId>
169 <artifactId>commons-collections4</artifactId>
170 <version>4.1</version>
171 </dependency>
172
173 <dependency>
174 <groupId>ch.qos.logback</groupId>
175 <artifactId>logback-classic</artifactId>
176 </dependency>
177
178 <dependency>
Jim Hahnc064f5e2019-02-13 10:53:12 -0500179 <groupId>org.onap.policy.common</groupId>
180 <artifactId>utils-test</artifactId>
181 <version>${project.version}</version>
182 <scope>test</scope>
183 </dependency>
184
185 <dependency>
mmisb40acf22018-07-20 15:28:25 +0100186 <groupId>junit</groupId>
187 <artifactId>junit</artifactId>
188 <scope>test</scope>
189 </dependency>
Krzysztof Opasiak28f6c6b2019-01-28 21:07:52 +0100190
Jim Hahn82425922018-09-25 11:29:16 -0400191 <dependency>
192 <groupId>org.powermock</groupId>
193 <artifactId>powermock-api-mockito</artifactId>
194 <scope>test</scope>
195 </dependency>
Krzysztof Opasiak28f6c6b2019-01-28 21:07:52 +0100196
Jim Hahna392ecb2019-01-08 17:15:07 -0500197 <dependency>
198 <groupId>org.assertj</groupId>
199 <artifactId>assertj-core</artifactId>
Jim Hahna392ecb2019-01-08 17:15:07 -0500200 <scope>test</scope>
201 </dependency>
mmisb40acf22018-07-20 15:28:25 +0100202
ramverma95751fd2018-08-28 14:09:39 +0100203 <dependency>
204 <groupId>com.openpojo</groupId>
205 <artifactId>openpojo</artifactId>
206 </dependency>
207
mmisb40acf22018-07-20 15:28:25 +0100208 </dependencies>
209
Pamela Dragoshaf5e28c2018-09-21 12:48:29 -0400210 <build>
211 <plugins>
212 <plugin>
213 <artifactId>maven-checkstyle-plugin</artifactId>
214 <executions>
215 <execution>
216 <id>onap-java-style</id>
217 <goals>
218 <goal>check</goal>
219 </goals>
220 <phase>process-sources</phase>
221 <configuration>
222 <!-- Use Google Java Style Guide:
223 https://github.com/checkstyle/checkstyle/blob/master/src/main/resources/google_checks.xml
224 with minor changes -->
225 <configLocation>onap-checkstyle/onap-java-style.xml</configLocation>
226 <!-- <sourceDirectory> is needed so that checkstyle ignores the generated sources directory -->
227 <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
228 <includeResources>true</includeResources>
229 <includeTestSourceDirectory>true</includeTestSourceDirectory>
230 <includeTestResources>true</includeTestResources>
231 <excludes>
232 </excludes>
Pamela Dragoshaf5e28c2018-09-21 12:48:29 -0400233 <consoleOutput>true</consoleOutput>
234 <failsOnViolation>true</failsOnViolation>
235 <violationSeverity>warning</violationSeverity>
236 </configuration>
237 </execution>
238 </executions>
239 <dependencies>
240 <dependency>
241 <groupId>org.onap.oparent</groupId>
242 <artifactId>checkstyle</artifactId>
243 <version>${oparent.version}</version>
244 <scope>compile</scope>
245 </dependency>
246 </dependencies>
247 </plugin>
248 </plugins>
249 </build>
mmisb40acf22018-07-20 15:28:25 +0100250</project>