blob: 74e51805ad92f67d0a2e13762804e1e11420b1c5 [file] [log] [blame]
Michal Jagiello8ac3e422020-05-28 10:49:20 +00001<?xml version="1.0" ?>
Alexis de Talhouëtf07c74c2019-02-26 11:26:03 -05002<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -04004 <modelVersion>4.0.0</modelVersion>
5 <parent>
6 <groupId>org.onap.so</groupId>
7 <artifactId>so</artifactId>
seshukmadbd1c42020-08-03 19:23:51 +05308 <version>1.7.1-SNAPSHOT</version>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -04009 </parent>
10 <artifactId>common</artifactId>
11 <name>MSO Common classes</name>
12 <description>MSO Common classes:- Logger</description>
Alexis de Talhouëtf07c74c2019-02-26 11:26:03 -050013
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040014 <properties>
15 <grpc.version>1.17.1</grpc.version>
16 <protobuf.version>3.6.1</protobuf.version>
17 <grpc.netty.version>4.1.30.Final</grpc.netty.version>
Marcus G K Williams0065d702019-05-13 14:20:33 -070018 <ccsdk.version>0.4.2</ccsdk.version>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040019 </properties>
Alexis de Talhouëtf07c74c2019-02-26 11:26:03 -050020
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040021 <dependencies>
22 <dependency>
23 <groupId>org.apache.httpcomponents</groupId>
24 <artifactId>httpclient</artifactId>
25 </dependency>
26 <dependency>
27 <groupId>javax.servlet</groupId>
28 <artifactId>javax.servlet-api</artifactId>
29 </dependency>
30 <dependency>
31 <groupId>org.springframework</groupId>
32 <artifactId>spring-aspects</artifactId>
33 </dependency>
34 <dependency>
35 <groupId>org.springframework.boot</groupId>
36 <artifactId>spring-boot-starter-security</artifactId>
37 </dependency>
38 <dependency>
39 <groupId>org.springframework.boot</groupId>
40 <artifactId>spring-boot-starter-actuator</artifactId>
41 </dependency>
42 <dependency>
43 <groupId>com.jayway.jsonpath</groupId>
44 <artifactId>json-path</artifactId>
45 </dependency>
46 <dependency>
47 <groupId>org.hibernate</groupId>
48 <artifactId>hibernate-core</artifactId>
49 </dependency>
50 <dependency>
51 <groupId>org.springframework</groupId>
52 <artifactId>spring-web</artifactId>
53 </dependency>
54 <dependency>
55 <groupId>org.springframework</groupId>
56 <artifactId>spring-webmvc</artifactId>
57 </dependency>
58 <dependency>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040059 <groupId>org.modelmapper</groupId>
60 <artifactId>modelmapper</artifactId>
Benjamin, Max9868f172020-05-18 16:37:51 -040061 <version>2.3.2</version>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040062 </dependency>
63 <dependency>
64 <groupId>com.google.guava</groupId>
65 <artifactId>guava</artifactId>
66 </dependency>
67 <dependency>
68 <groupId>org.apache.commons</groupId>
69 <artifactId>commons-lang3</artifactId>
70 </dependency>
71 <dependency>
72 <groupId>org.apache.cxf</groupId>
73 <artifactId>cxf-rt-rs-client</artifactId>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040074 <scope>test</scope>
75 </dependency>
76 <dependency>
77 <groupId>com.shazam</groupId>
78 <artifactId>shazamcrest</artifactId>
79 <version>0.11</version>
80 <scope>test</scope>
81 <exclusions>
82 <exclusion>
83 <groupId>com.google.guava</groupId>
84 <artifactId>guava</artifactId>
85 </exclusion>
86 <exclusion>
87 <groupId>org.apache.commons</groupId>
88 <artifactId>commons-lang3</artifactId>
89 </exclusion>
90 </exclusions>
91 </dependency>
92 <dependency>
Kalkere Ramesh, Sharan1f45bb12020-02-10 11:11:04 -050093 <groupId>org.apache.tomcat</groupId>
94 <artifactId>tomcat-catalina</artifactId>
95 <version>9.0.30</version>
96 </dependency>
97 <dependency>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040098 <groupId>org.slf4j</groupId>
99 <artifactId>slf4j-ext</artifactId>
100 </dependency>
101 <dependency>
102 <groupId>org.slf4j</groupId>
103 <artifactId>slf4j-api</artifactId>
104 </dependency>
105 <dependency>
106 <groupId>org.springframework.boot</groupId>
107 <artifactId>spring-boot-configuration-processor</artifactId>
108 <optional>true</optional>
109 </dependency>
110 <dependency>
Benjamin, Max750f5792020-06-04 17:46:54 -0400111 <groupId>org.springframework.retry</groupId>
112 <artifactId>spring-retry</artifactId>
113 </dependency>
114 <dependency>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400115 <groupId>net.jodah</groupId>
116 <artifactId>failsafe</artifactId>
Benjamin, Max577bd392019-06-26 11:26:55 -0400117 <version>2.0.1</version>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400118 </dependency>
119 <dependency>
120 <groupId>org.springframework.security</groupId>
121 <artifactId>spring-security-web</artifactId>
122 </dependency>
123 <dependency>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400124 <groupId>org.mockito</groupId>
125 <artifactId>mockito-core</artifactId>
126 </dependency>
127 <dependency>
128 <groupId>org.json</groupId>
129 <artifactId>json</artifactId>
130 </dependency>
131 <dependency>
132 <groupId>org.springframework.boot</groupId>
133 <artifactId>spring-boot-starter-test</artifactId>
134 <scope>test</scope>
135 </dependency>
136 <dependency>
Ramesh Parthasarathy837beb72019-11-21 02:04:03 +0000137 <groupId>org.onap.aaf.authz</groupId>
138 <artifactId>aaf-cadi-aaf</artifactId>
Benjamin, Max9868f172020-05-18 16:37:51 -0400139 <version>${aaf.cadi.version}</version>
Ramesh Parthasarathy837beb72019-11-21 02:04:03 +0000140 <exclusions>
141 <exclusion>
142 <groupId>javax.servlet</groupId>
143 <artifactId>servlet-api</artifactId>
144 </exclusion>
deepikasatheeshf70e8de2020-07-29 22:53:54 -0700145 <exclusion>
146 <groupId>log4j</groupId>
147 <artifactId>log4j</artifactId>
148 </exclusion>
Ramesh Parthasarathy837beb72019-11-21 02:04:03 +0000149 </exclusions>
150 </dependency>
151 <dependency>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400152 <groupId>org.reflections</groupId>
153 <artifactId>reflections</artifactId>
154 <version>0.9.11</version>
155 </dependency>
Benjamin, Max (mb388a)70222342019-06-19 14:16:52 -0400156 <dependency>
157 <groupId>com.zaxxer</groupId>
158 <artifactId>HikariCP</artifactId>
159 </dependency>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400160 <!-- CDS dependencies -->
161 <dependency>
162 <groupId>org.onap.ccsdk.cds.components</groupId>
163 <artifactId>proto-definition</artifactId>
164 <version>${ccsdk.version}</version>
165 </dependency>
Alexis de Talhouëtf07c74c2019-02-26 11:26:03 -0500166
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400167 <!-- protobuf dependencies -->
168 <dependency>
169 <groupId>com.google.protobuf</groupId>
170 <artifactId>protobuf-java</artifactId>
171 <version>${protobuf.version}</version>
172 </dependency>
Alexis de Talhouëtf07c74c2019-02-26 11:26:03 -0500173
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400174 <!-- gRPC dependencies -->
175 <dependency>
176 <groupId>io.grpc</groupId>
177 <artifactId>grpc-protobuf</artifactId>
178 <version>${grpc.version}</version>
179 <exclusions>
180 <exclusion>
181 <groupId>com.google.code.findbugs</groupId>
182 <artifactId>jsr305</artifactId>
183 </exclusion>
184 </exclusions>
185 </dependency>
186 <dependency>
187 <groupId>io.grpc</groupId>
188 <artifactId>grpc-stub</artifactId>
189 <version>${grpc.version}</version>
190 </dependency>
191 <dependency>
192 <groupId>io.grpc</groupId>
193 <artifactId>grpc-netty</artifactId>
194 <version>${grpc.version}</version>
195 </dependency>
196 <dependency>
197 <groupId>io.grpc</groupId>
198 <artifactId>grpc-testing</artifactId>
199 <version>${grpc.version}</version>
200 <scope>test</scope>
201 </dependency>
Smokowski, Stevenfa36daa2019-08-15 21:40:16 -0400202 <dependency>
203 <groupId>org.javatuples</groupId>
204 <artifactId>javatuples</artifactId>
205 <version>1.2</version>
206 </dependency>
Bhatt, Premaae9a2bd2019-09-17 08:08:12 -0400207 <dependency>
Boslet, Coryff4b57e2019-09-08 11:31:56 -0400208 <groupId>org.camunda.bpm</groupId>
209 <artifactId>camunda-external-task-client</artifactId>
210 <version>1.1.1</version>
211 </dependency>
Kuleshov, Elena833d2192020-01-10 09:53:29 -0500212 <dependency>
213 <groupId>org.onap.appc.client</groupId>
214 <artifactId>client-lib</artifactId>
215 <version>${appc.client.version}</version>
216 <exclusions>
217 <exclusion>
218 <groupId>org.mockito</groupId>
219 <artifactId>mockito-core</artifactId>
220 </exclusion>
221 <exclusion>
222 <groupId>org.powermock</groupId>
223 <artifactId>powermock-module-junit4</artifactId>
224 </exclusion>
225 <exclusion>
226 <groupId>org.powermock</groupId>
227 <artifactId>powermock-api-mockito</artifactId>
228 </exclusion>
229 </exclusions>
230 </dependency>
231 <dependency>
232 <groupId>org.onap.appc.client</groupId>
233 <artifactId>client-kit</artifactId>
234 <version>${appc.client.version}</version>
235 <exclusions>
236 <exclusion>
237 <groupId>org.mockito</groupId>
238 <artifactId>mockito-core</artifactId>
239 </exclusion>
240 </exclusions>
241 </dependency>
242 <dependency>
243 <groupId>org.onap.appc.client</groupId>
244 <artifactId>client-lib</artifactId>
245 <version>${appc.client.version}</version>
246 <exclusions>
247 <exclusion>
248 <groupId>org.mockito</groupId>
249 <artifactId>mockito-core</artifactId>
250 </exclusion>
251 <exclusion>
252 <groupId>org.powermock</groupId>
253 <artifactId>powermock-module-junit4</artifactId>
254 </exclusion>
255 <exclusion>
256 <groupId>org.powermock</groupId>
257 <artifactId>powermock-api-mockito</artifactId>
258 </exclusion>
259 </exclusions>
260 </dependency>
261 <dependency>
262 <groupId>org.onap.appc.client</groupId>
263 <artifactId>client-kit</artifactId>
264 <version>${appc.client.version}</version>
265 <exclusions>
266 <exclusion>
267 <groupId>org.mockito</groupId>
268 <artifactId>mockito-core</artifactId>
269 </exclusion>
270 </exclusions>
271 </dependency>
Benjamin, Max9868f172020-05-18 16:37:51 -0400272 <dependency>
zm330b379e1c2020-08-25 17:39:10 +0800273 <groupId>org.projectlombok</groupId>
274 <artifactId>lombok</artifactId>
275 <scope>provided</scope>
276 </dependency>
277 <dependency>
278 <groupId>javax.validation</groupId>
279 <artifactId>validation-api</artifactId>
280 </dependency>
281 <dependency>
Benjamin, Max9868f172020-05-18 16:37:51 -0400282 <groupId>javax.xml.bind</groupId>
283 <artifactId>jaxb-api</artifactId>
284 <version>2.3.0</version>
285 </dependency>
286 <dependency>
287 <groupId>com.sun.xml.bind</groupId>
288 <artifactId>jaxb-core</artifactId>
289 <version>2.3.0</version>
290 </dependency>
291 <dependency>
292 <groupId>com.sun.xml.bind</groupId>
293 <artifactId>jaxb-impl</artifactId>
294 <version>2.3.0</version>
295 </dependency>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400296 </dependencies>
Benjamin, Max (mb388a)70222342019-06-19 14:16:52 -0400297 <dependencyManagement>
298 <dependencies>
299 <dependency>
300 <groupId>org.springframework.boot</groupId>
301 <artifactId>spring-boot-dependencies</artifactId>
302 <version>${springboot.version}</version>
303 <type>pom</type>
304 <scope>import</scope>
305 </dependency>
306 </dependencies>
307 </dependencyManagement>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400308 <build>
309 <resources>
310 <resource>
311 <directory>src/main/resources</directory>
312 <filtering>true</filtering>
313 </resource>
314 <resource>
315 <directory>src/main/java</directory>
316 <includes>
317 <include>**/*.java</include>
318 </includes>
319 </resource>
320 </resources>
321 <plugins>
322 <plugin>
323 <groupId>org.apache.maven.plugins</groupId>
324 <artifactId>maven-surefire-plugin</artifactId>
325 <executions>
326 <execution>
327 <id>default-test</id>
328 <goals>
329 <goal>test</goal>
330 </goals>
331 <configuration>
332 <includes>
333 <include>**/NonSpringSuite.java</include>
334 </includes>
335 </configuration>
336 </execution>
337 <execution>
338 <id>spring-tests</id>
339 <goals>
340 <goal>test</goal>
341 </goals>
342 <configuration>
343 <includes>
344 <include>**/SpringSuite.java</include>
345 </includes>
346 </configuration>
347 </execution>
348 </executions>
349 </plugin>
Benjamin, Max7e372112019-11-08 10:32:10 -0500350 <plugin>
351 <groupId>org.apache.maven.plugins</groupId>
352 <artifactId>maven-jar-plugin</artifactId>
353 <version>3.0.2</version>
354 <executions>
355 <execution>
356 <id>tests-jar</id>
357 <phase>package</phase>
358 <goals>
359 <goal>test-jar</goal>
360 </goals>
361 <configuration>
362 <skip>false</skip>
363 </configuration>
364 </execution>
365 </executions>
366 </plugin>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400367 </plugins>
368 </build>
Michal Jagiello8ac3e422020-05-28 10:49:20 +0000369</project>