blob: 45359231d06a7ec04e26d2acbfb6f1716efde903 [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>
seshukm1c8d0202021-02-15 20:35:29 +05308 <version>1.8.0-SNAPSHOT</version>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -04009 </parent>
10 <artifactId>common</artifactId>
Benjamin, Max (mb388a)d5968f52021-02-05 20:34:11 -050011 <name>common</name>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040012 <description>MSO Common classes:- Logger</description>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040013 <properties>
14 <grpc.version>1.17.1</grpc.version>
15 <protobuf.version>3.6.1</protobuf.version>
16 <grpc.netty.version>4.1.30.Final</grpc.netty.version>
Marcus G K Williams0065d702019-05-13 14:20:33 -070017 <ccsdk.version>0.4.2</ccsdk.version>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040018 </properties>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040019 <dependencies>
20 <dependency>
21 <groupId>org.apache.httpcomponents</groupId>
22 <artifactId>httpclient</artifactId>
23 </dependency>
24 <dependency>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040025 <groupId>org.springframework</groupId>
26 <artifactId>spring-aspects</artifactId>
27 </dependency>
28 <dependency>
29 <groupId>org.springframework.boot</groupId>
30 <artifactId>spring-boot-starter-security</artifactId>
31 </dependency>
32 <dependency>
33 <groupId>org.springframework.boot</groupId>
34 <artifactId>spring-boot-starter-actuator</artifactId>
35 </dependency>
36 <dependency>
37 <groupId>com.jayway.jsonpath</groupId>
38 <artifactId>json-path</artifactId>
39 </dependency>
40 <dependency>
41 <groupId>org.hibernate</groupId>
42 <artifactId>hibernate-core</artifactId>
43 </dependency>
44 <dependency>
45 <groupId>org.springframework</groupId>
46 <artifactId>spring-web</artifactId>
47 </dependency>
48 <dependency>
49 <groupId>org.springframework</groupId>
50 <artifactId>spring-webmvc</artifactId>
51 </dependency>
52 <dependency>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040053 <groupId>org.modelmapper</groupId>
54 <artifactId>modelmapper</artifactId>
Benjamin, Max9868f172020-05-18 16:37:51 -040055 <version>2.3.2</version>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040056 </dependency>
57 <dependency>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040058 <groupId>org.apache.cxf</groupId>
59 <artifactId>cxf-rt-rs-client</artifactId>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040060 <scope>test</scope>
61 </dependency>
62 <dependency>
63 <groupId>com.shazam</groupId>
64 <artifactId>shazamcrest</artifactId>
65 <version>0.11</version>
66 <scope>test</scope>
67 <exclusions>
68 <exclusion>
69 <groupId>com.google.guava</groupId>
70 <artifactId>guava</artifactId>
71 </exclusion>
72 <exclusion>
73 <groupId>org.apache.commons</groupId>
74 <artifactId>commons-lang3</artifactId>
75 </exclusion>
76 </exclusions>
77 </dependency>
78 <dependency>
Kalkere Ramesh, Sharan1f45bb12020-02-10 11:11:04 -050079 <groupId>org.apache.tomcat</groupId>
80 <artifactId>tomcat-catalina</artifactId>
81 <version>9.0.30</version>
82 </dependency>
83 <dependency>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040084 <groupId>org.slf4j</groupId>
85 <artifactId>slf4j-ext</artifactId>
86 </dependency>
87 <dependency>
88 <groupId>org.slf4j</groupId>
89 <artifactId>slf4j-api</artifactId>
90 </dependency>
91 <dependency>
92 <groupId>org.springframework.boot</groupId>
93 <artifactId>spring-boot-configuration-processor</artifactId>
94 <optional>true</optional>
95 </dependency>
96 <dependency>
Benjamin, Max750f5792020-06-04 17:46:54 -040097 <groupId>org.springframework.retry</groupId>
98 <artifactId>spring-retry</artifactId>
99 </dependency>
100 <dependency>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400101 <groupId>net.jodah</groupId>
102 <artifactId>failsafe</artifactId>
Benjamin, Max577bd392019-06-26 11:26:55 -0400103 <version>2.0.1</version>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400104 </dependency>
105 <dependency>
106 <groupId>org.springframework.security</groupId>
107 <artifactId>spring-security-web</artifactId>
108 </dependency>
109 <dependency>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400110 <groupId>org.mockito</groupId>
111 <artifactId>mockito-core</artifactId>
112 </dependency>
113 <dependency>
114 <groupId>org.json</groupId>
115 <artifactId>json</artifactId>
116 </dependency>
117 <dependency>
118 <groupId>org.springframework.boot</groupId>
119 <artifactId>spring-boot-starter-test</artifactId>
120 <scope>test</scope>
121 </dependency>
122 <dependency>
Ramesh Parthasarathy837beb72019-11-21 02:04:03 +0000123 <groupId>org.onap.aaf.authz</groupId>
Benjamin, Max (mb388a)4209b112021-01-13 12:37:09 -0500124 <artifactId>aaf-cadi-client</artifactId>
125 </dependency>
126 <dependency>
127 <groupId>org.onap.aaf.authz</groupId>
Ramesh Parthasarathy837beb72019-11-21 02:04:03 +0000128 <artifactId>aaf-cadi-aaf</artifactId>
Ramesh Parthasarathy837beb72019-11-21 02:04:03 +0000129 <exclusions>
130 <exclusion>
131 <groupId>javax.servlet</groupId>
132 <artifactId>servlet-api</artifactId>
133 </exclusion>
deepikasatheeshf70e8de2020-07-29 22:53:54 -0700134 <exclusion>
135 <groupId>log4j</groupId>
136 <artifactId>log4j</artifactId>
137 </exclusion>
Ramesh Parthasarathy837beb72019-11-21 02:04:03 +0000138 </exclusions>
139 </dependency>
140 <dependency>
Benjamin, Max (mb388a)4209b112021-01-13 12:37:09 -0500141 <groupId>org.onap.aaf.authz</groupId>
142 <artifactId>aaf-auth-client</artifactId>
143 <scope>runtime</scope>
144 </dependency>
145 <dependency>
146 <groupId>org.onap.aaf.authz</groupId>
147 <artifactId>aaf-misc-env</artifactId>
148 <scope>runtime</scope>
149 </dependency>
150 <dependency>
151 <groupId>org.onap.aaf.authz</groupId>
152 <artifactId>aaf-misc-rosetta</artifactId>
153 <scope>runtime</scope>
154 </dependency>
155 <dependency>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400156 <groupId>org.reflections</groupId>
157 <artifactId>reflections</artifactId>
158 <version>0.9.11</version>
159 </dependency>
Benjamin, Max (mb388a)70222342019-06-19 14:16:52 -0400160 <dependency>
161 <groupId>com.zaxxer</groupId>
162 <artifactId>HikariCP</artifactId>
163 </dependency>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400164 <!-- CDS dependencies -->
165 <dependency>
166 <groupId>org.onap.ccsdk.cds.components</groupId>
167 <artifactId>proto-definition</artifactId>
168 <version>${ccsdk.version}</version>
169 </dependency>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400170 <!-- protobuf dependencies -->
171 <dependency>
172 <groupId>com.google.protobuf</groupId>
173 <artifactId>protobuf-java</artifactId>
174 <version>${protobuf.version}</version>
175 </dependency>
Alexis de Talhouƫtf07c74c2019-02-26 11:26:03 -0500176
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400177 <!-- gRPC dependencies -->
178 <dependency>
179 <groupId>io.grpc</groupId>
180 <artifactId>grpc-protobuf</artifactId>
181 <version>${grpc.version}</version>
182 <exclusions>
183 <exclusion>
184 <groupId>com.google.code.findbugs</groupId>
185 <artifactId>jsr305</artifactId>
186 </exclusion>
187 </exclusions>
188 </dependency>
189 <dependency>
190 <groupId>io.grpc</groupId>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400191 <artifactId>grpc-netty</artifactId>
192 <version>${grpc.version}</version>
193 </dependency>
194 <dependency>
195 <groupId>io.grpc</groupId>
196 <artifactId>grpc-testing</artifactId>
197 <version>${grpc.version}</version>
198 <scope>test</scope>
199 </dependency>
Smokowski, Stevenfa36daa2019-08-15 21:40:16 -0400200 <dependency>
201 <groupId>org.javatuples</groupId>
202 <artifactId>javatuples</artifactId>
203 <version>1.2</version>
204 </dependency>
Bhatt, Premaae9a2bd2019-09-17 08:08:12 -0400205 <dependency>
Boslet, Coryff4b57e2019-09-08 11:31:56 -0400206 <groupId>org.camunda.bpm</groupId>
207 <artifactId>camunda-external-task-client</artifactId>
Boslet, Coryff4b57e2019-09-08 11:31:56 -0400208 </dependency>
Kuleshov, Elena833d2192020-01-10 09:53:29 -0500209 <dependency>
210 <groupId>org.onap.appc.client</groupId>
211 <artifactId>client-lib</artifactId>
212 <version>${appc.client.version}</version>
213 <exclusions>
214 <exclusion>
215 <groupId>org.mockito</groupId>
216 <artifactId>mockito-core</artifactId>
217 </exclusion>
218 <exclusion>
219 <groupId>org.powermock</groupId>
220 <artifactId>powermock-module-junit4</artifactId>
221 </exclusion>
222 <exclusion>
223 <groupId>org.powermock</groupId>
224 <artifactId>powermock-api-mockito</artifactId>
225 </exclusion>
226 </exclusions>
227 </dependency>
228 <dependency>
229 <groupId>org.onap.appc.client</groupId>
230 <artifactId>client-kit</artifactId>
231 <version>${appc.client.version}</version>
232 <exclusions>
233 <exclusion>
234 <groupId>org.mockito</groupId>
235 <artifactId>mockito-core</artifactId>
236 </exclusion>
237 </exclusions>
238 </dependency>
239 <dependency>
240 <groupId>org.onap.appc.client</groupId>
241 <artifactId>client-lib</artifactId>
242 <version>${appc.client.version}</version>
243 <exclusions>
244 <exclusion>
245 <groupId>org.mockito</groupId>
246 <artifactId>mockito-core</artifactId>
247 </exclusion>
248 <exclusion>
249 <groupId>org.powermock</groupId>
250 <artifactId>powermock-module-junit4</artifactId>
251 </exclusion>
252 <exclusion>
253 <groupId>org.powermock</groupId>
254 <artifactId>powermock-api-mockito</artifactId>
255 </exclusion>
256 </exclusions>
257 </dependency>
258 <dependency>
259 <groupId>org.onap.appc.client</groupId>
260 <artifactId>client-kit</artifactId>
261 <version>${appc.client.version}</version>
262 <exclusions>
263 <exclusion>
264 <groupId>org.mockito</groupId>
265 <artifactId>mockito-core</artifactId>
266 </exclusion>
267 </exclusions>
268 </dependency>
Benjamin, Max9868f172020-05-18 16:37:51 -0400269 <dependency>
zm330b379e1c2020-08-25 17:39:10 +0800270 <groupId>org.projectlombok</groupId>
271 <artifactId>lombok</artifactId>
272 <scope>provided</scope>
273 </dependency>
274 <dependency>
275 <groupId>javax.validation</groupId>
276 <artifactId>validation-api</artifactId>
277 </dependency>
278 <dependency>
Benjamin, Max9868f172020-05-18 16:37:51 -0400279 <groupId>com.sun.xml.bind</groupId>
280 <artifactId>jaxb-core</artifactId>
281 <version>2.3.0</version>
282 </dependency>
283 <dependency>
284 <groupId>com.sun.xml.bind</groupId>
285 <artifactId>jaxb-impl</artifactId>
286 <version>2.3.0</version>
287 </dependency>
Benjamin, Maxa1623162020-11-19 18:12:50 -0500288 <dependency>
289 <groupId>javax.cache</groupId>
290 <artifactId>cache-api</artifactId>
291 <version>1.0.0</version>
292 </dependency>
293 <dependency>
294 <groupId>org.ehcache</groupId>
295 <artifactId>ehcache</artifactId>
Benjamin, Maxa1623162020-11-19 18:12:50 -0500296 </dependency>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400297 </dependencies>
Benjamin, Max (mb388a)70222342019-06-19 14:16:52 -0400298 <dependencyManagement>
299 <dependencies>
300 <dependency>
301 <groupId>org.springframework.boot</groupId>
302 <artifactId>spring-boot-dependencies</artifactId>
303 <version>${springboot.version}</version>
304 <type>pom</type>
305 <scope>import</scope>
306 </dependency>
307 </dependencies>
308 </dependencyManagement>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400309 <build>
310 <resources>
311 <resource>
312 <directory>src/main/resources</directory>
313 <filtering>true</filtering>
314 </resource>
315 <resource>
316 <directory>src/main/java</directory>
317 <includes>
318 <include>**/*.java</include>
319 </includes>
320 </resource>
321 </resources>
322 <plugins>
323 <plugin>
324 <groupId>org.apache.maven.plugins</groupId>
325 <artifactId>maven-surefire-plugin</artifactId>
326 <executions>
327 <execution>
328 <id>default-test</id>
329 <goals>
330 <goal>test</goal>
331 </goals>
332 <configuration>
333 <includes>
334 <include>**/NonSpringSuite.java</include>
335 </includes>
336 </configuration>
337 </execution>
338 <execution>
339 <id>spring-tests</id>
340 <goals>
341 <goal>test</goal>
342 </goals>
343 <configuration>
344 <includes>
345 <include>**/SpringSuite.java</include>
346 </includes>
347 </configuration>
348 </execution>
349 </executions>
350 </plugin>
Benjamin, Max7e372112019-11-08 10:32:10 -0500351 <plugin>
352 <groupId>org.apache.maven.plugins</groupId>
353 <artifactId>maven-jar-plugin</artifactId>
Benjamin, Max7e372112019-11-08 10:32:10 -0500354 <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>
Benjamin, Max (mb388a)d5968f52021-02-05 20:34:11 -0500368 <pluginManagement>
369 <plugins>
370 <plugin>
371 <artifactId>maven-surefire-plugin</artifactId>
372 <version>2.20</version>
373 <configuration>
374 <systemPropertyVariables>
375 <so.log.level>DEBUG</so.log.level>
376 </systemPropertyVariables>
377 <rerunFailingTestsCount>2</rerunFailingTestsCount>
378 <parallel>suites</parallel>
379 <useUnlimitedThreads>false</useUnlimitedThreads>
380 <threadCount>1</threadCount>
381 <argLine>${surefireArgLine}</argLine>
382 </configuration>
383 </plugin>
384 </plugins>
385 </pluginManagement>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400386 </build>
Benjamin, Maxa1623162020-11-19 18:12:50 -0500387</project>