blob: ff13da4ee65967e7db66a33e45502974e2b7be37 [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>
74 <version>${cxf.version}</version>
75 <scope>test</scope>
76 </dependency>
77 <dependency>
78 <groupId>com.shazam</groupId>
79 <artifactId>shazamcrest</artifactId>
80 <version>0.11</version>
81 <scope>test</scope>
82 <exclusions>
83 <exclusion>
84 <groupId>com.google.guava</groupId>
85 <artifactId>guava</artifactId>
86 </exclusion>
87 <exclusion>
88 <groupId>org.apache.commons</groupId>
89 <artifactId>commons-lang3</artifactId>
90 </exclusion>
91 </exclusions>
92 </dependency>
93 <dependency>
Kalkere Ramesh, Sharan1f45bb12020-02-10 11:11:04 -050094 <groupId>org.apache.tomcat</groupId>
95 <artifactId>tomcat-catalina</artifactId>
96 <version>9.0.30</version>
97 </dependency>
98 <dependency>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040099 <groupId>org.slf4j</groupId>
100 <artifactId>slf4j-ext</artifactId>
101 </dependency>
102 <dependency>
103 <groupId>org.slf4j</groupId>
104 <artifactId>slf4j-api</artifactId>
105 </dependency>
106 <dependency>
107 <groupId>org.springframework.boot</groupId>
108 <artifactId>spring-boot-configuration-processor</artifactId>
109 <optional>true</optional>
110 </dependency>
111 <dependency>
Benjamin, Max750f5792020-06-04 17:46:54 -0400112 <groupId>org.springframework.retry</groupId>
113 <artifactId>spring-retry</artifactId>
114 </dependency>
115 <dependency>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400116 <groupId>net.jodah</groupId>
117 <artifactId>failsafe</artifactId>
Benjamin, Max577bd392019-06-26 11:26:55 -0400118 <version>2.0.1</version>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400119 </dependency>
120 <dependency>
121 <groupId>org.springframework.security</groupId>
122 <artifactId>spring-security-web</artifactId>
123 </dependency>
124 <dependency>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400125 <groupId>org.mockito</groupId>
126 <artifactId>mockito-core</artifactId>
127 </dependency>
128 <dependency>
129 <groupId>org.json</groupId>
130 <artifactId>json</artifactId>
131 </dependency>
132 <dependency>
133 <groupId>org.springframework.boot</groupId>
134 <artifactId>spring-boot-starter-test</artifactId>
135 <scope>test</scope>
136 </dependency>
137 <dependency>
Ramesh Parthasarathy837beb72019-11-21 02:04:03 +0000138 <groupId>org.onap.aaf.authz</groupId>
139 <artifactId>aaf-cadi-aaf</artifactId>
Benjamin, Max9868f172020-05-18 16:37:51 -0400140 <version>${aaf.cadi.version}</version>
Ramesh Parthasarathy837beb72019-11-21 02:04:03 +0000141 <exclusions>
142 <exclusion>
143 <groupId>javax.servlet</groupId>
144 <artifactId>servlet-api</artifactId>
145 </exclusion>
deepikasatheeshf70e8de2020-07-29 22:53:54 -0700146 <exclusion>
147 <groupId>log4j</groupId>
148 <artifactId>log4j</artifactId>
149 </exclusion>
Ramesh Parthasarathy837beb72019-11-21 02:04:03 +0000150 </exclusions>
151 </dependency>
152 <dependency>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400153 <groupId>org.reflections</groupId>
154 <artifactId>reflections</artifactId>
155 <version>0.9.11</version>
156 </dependency>
Benjamin, Max (mb388a)70222342019-06-19 14:16:52 -0400157 <dependency>
158 <groupId>com.zaxxer</groupId>
159 <artifactId>HikariCP</artifactId>
160 </dependency>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400161 <!-- CDS dependencies -->
162 <dependency>
163 <groupId>org.onap.ccsdk.cds.components</groupId>
164 <artifactId>proto-definition</artifactId>
165 <version>${ccsdk.version}</version>
166 </dependency>
Alexis de Talhouëtf07c74c2019-02-26 11:26:03 -0500167
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400168 <!-- protobuf dependencies -->
169 <dependency>
170 <groupId>com.google.protobuf</groupId>
171 <artifactId>protobuf-java</artifactId>
172 <version>${protobuf.version}</version>
173 </dependency>
Alexis de Talhouëtf07c74c2019-02-26 11:26:03 -0500174
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400175 <!-- gRPC dependencies -->
176 <dependency>
177 <groupId>io.grpc</groupId>
178 <artifactId>grpc-protobuf</artifactId>
179 <version>${grpc.version}</version>
180 <exclusions>
181 <exclusion>
182 <groupId>com.google.code.findbugs</groupId>
183 <artifactId>jsr305</artifactId>
184 </exclusion>
185 </exclusions>
186 </dependency>
187 <dependency>
188 <groupId>io.grpc</groupId>
189 <artifactId>grpc-stub</artifactId>
190 <version>${grpc.version}</version>
191 </dependency>
192 <dependency>
193 <groupId>io.grpc</groupId>
194 <artifactId>grpc-netty</artifactId>
195 <version>${grpc.version}</version>
196 </dependency>
197 <dependency>
198 <groupId>io.grpc</groupId>
199 <artifactId>grpc-testing</artifactId>
200 <version>${grpc.version}</version>
201 <scope>test</scope>
202 </dependency>
Smokowski, Stevenfa36daa2019-08-15 21:40:16 -0400203 <dependency>
204 <groupId>org.javatuples</groupId>
205 <artifactId>javatuples</artifactId>
206 <version>1.2</version>
207 </dependency>
Bhatt, Premaae9a2bd2019-09-17 08:08:12 -0400208 <dependency>
Boslet, Coryff4b57e2019-09-08 11:31:56 -0400209 <groupId>org.camunda.bpm</groupId>
210 <artifactId>camunda-external-task-client</artifactId>
211 <version>1.1.1</version>
212 </dependency>
Kuleshov, Elena833d2192020-01-10 09:53:29 -0500213 <dependency>
214 <groupId>org.onap.appc.client</groupId>
215 <artifactId>client-lib</artifactId>
216 <version>${appc.client.version}</version>
217 <exclusions>
218 <exclusion>
219 <groupId>org.mockito</groupId>
220 <artifactId>mockito-core</artifactId>
221 </exclusion>
222 <exclusion>
223 <groupId>org.powermock</groupId>
224 <artifactId>powermock-module-junit4</artifactId>
225 </exclusion>
226 <exclusion>
227 <groupId>org.powermock</groupId>
228 <artifactId>powermock-api-mockito</artifactId>
229 </exclusion>
230 </exclusions>
231 </dependency>
232 <dependency>
233 <groupId>org.onap.appc.client</groupId>
234 <artifactId>client-kit</artifactId>
235 <version>${appc.client.version}</version>
236 <exclusions>
237 <exclusion>
238 <groupId>org.mockito</groupId>
239 <artifactId>mockito-core</artifactId>
240 </exclusion>
241 </exclusions>
242 </dependency>
243 <dependency>
244 <groupId>org.onap.appc.client</groupId>
245 <artifactId>client-lib</artifactId>
246 <version>${appc.client.version}</version>
247 <exclusions>
248 <exclusion>
249 <groupId>org.mockito</groupId>
250 <artifactId>mockito-core</artifactId>
251 </exclusion>
252 <exclusion>
253 <groupId>org.powermock</groupId>
254 <artifactId>powermock-module-junit4</artifactId>
255 </exclusion>
256 <exclusion>
257 <groupId>org.powermock</groupId>
258 <artifactId>powermock-api-mockito</artifactId>
259 </exclusion>
260 </exclusions>
261 </dependency>
262 <dependency>
263 <groupId>org.onap.appc.client</groupId>
264 <artifactId>client-kit</artifactId>
265 <version>${appc.client.version}</version>
266 <exclusions>
267 <exclusion>
268 <groupId>org.mockito</groupId>
269 <artifactId>mockito-core</artifactId>
270 </exclusion>
271 </exclusions>
272 </dependency>
Benjamin, Max9868f172020-05-18 16:37:51 -0400273 <dependency>
zm330b379e1c2020-08-25 17:39:10 +0800274 <groupId>org.projectlombok</groupId>
275 <artifactId>lombok</artifactId>
276 <scope>provided</scope>
277 </dependency>
278 <dependency>
279 <groupId>javax.validation</groupId>
280 <artifactId>validation-api</artifactId>
281 </dependency>
282 <dependency>
Benjamin, Max9868f172020-05-18 16:37:51 -0400283 <groupId>javax.xml.bind</groupId>
284 <artifactId>jaxb-api</artifactId>
285 <version>2.3.0</version>
286 </dependency>
287 <dependency>
288 <groupId>com.sun.xml.bind</groupId>
289 <artifactId>jaxb-core</artifactId>
290 <version>2.3.0</version>
291 </dependency>
292 <dependency>
293 <groupId>com.sun.xml.bind</groupId>
294 <artifactId>jaxb-impl</artifactId>
295 <version>2.3.0</version>
296 </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>
354 <version>3.0.2</version>
355 <executions>
356 <execution>
357 <id>tests-jar</id>
358 <phase>package</phase>
359 <goals>
360 <goal>test-jar</goal>
361 </goals>
362 <configuration>
363 <skip>false</skip>
364 </configuration>
365 </execution>
366 </executions>
367 </plugin>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400368 </plugins>
369 </build>
Michal Jagiello8ac3e422020-05-28 10:49:20 +0000370</project>