blob: 210943ae3c9c5cc2d9c4f34f67812ccf08b682fa [file] [log] [blame]
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +00001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright © 2017-2018 AT&T Intellectual Property.
4 ~
Brinda Santhafbc1522018-08-23 23:34:05 -04005 ~ Modifications Copyright © 2018 IBM.
Steve Alphonse Siania5f9b6f2019-01-21 11:55:48 -05006 ~ Modifications Copyright © 2019 Bell Canada.
Brinda Santhafbc1522018-08-23 23:34:05 -04007 ~
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +00008 ~ Licensed under the Apache License, Version 2.0 (the "License");
9 ~ you may not use this file except in compliance with the License.
10 ~ You may obtain a copy of the License at
11 ~
12 ~ http://www.apache.org/licenses/LICENSE-2.0
13 ~
14 ~ Unless required by applicable law or agreed to in writing, software
15 ~ distributed under the License is distributed on an "AS IS" BASIS,
16 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 ~ See the License for the specific language governing permissions and
18 ~ limitations under the License.
19 -->
Alexis de Talhouët4a65d472019-01-17 16:47:46 -050020<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Muthuramalingam, Brinda Santhfd14fc12019-01-30 15:52:30 -050021 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +000022 <modelVersion>4.0.0</modelVersion>
Muthuramalingam, Brinda Santh(bs2796)ee467d72018-08-23 15:54:30 +000023 <parent>
24 <groupId>org.onap.ccsdk.apps</groupId>
25 <artifactId>blueprintsprocessor</artifactId>
Timoney, Dan (dt5972)d7d47b42019-01-04 10:43:33 -050026 <version>0.4.1-SNAPSHOT</version>
Muthuramalingam, Brinda Santh(bs2796)ee467d72018-08-23 15:54:30 +000027 </parent>
28 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +000029 <artifactId>parent</artifactId>
30 <packaging>pom</packaging>
31 <name>Blueprints Processor Parent</name>
32 <description>Blueprints Processor Parent</description>
33 <properties>
Muthuramalingam, Brinda Santh0613ae82019-02-18 15:10:25 -050034 <kotlin.compiler.jvmTarget>1.8</kotlin.compiler.jvmTarget>
Muthuramalingam, Brinda Santh6f6a3c02019-02-27 20:47:17 -050035 <spring.boot.version>2.1.3.RELEASE</spring.boot.version>
36 <spring.version>5.1.5.RELEASE</spring.version>
37 <kotlin.version>1.3.21</kotlin.version>
38 <kotlin.maven.version>1.3.21</kotlin.maven.version>
Muthuramalingam, Brinda Santhb20d5172019-01-25 20:17:35 -050039 <kotlin.couroutines.version>1.1.1</kotlin.couroutines.version>
Muthuramalingam, Brinda Santh94df5102019-01-23 11:42:13 -050040 <grpc.version>1.18.0</grpc.version>
Muthuramalingam, Brinda Santh(bs2796)3b4a7eb2018-12-07 16:37:03 -050041 <protobuff.java.utils.version>3.6.1</protobuff.java.utils.version>
Muthuramalingam, Brinda Santh(bs2796)ee467d72018-08-23 15:54:30 +000042 <eelf.version>1.0.0</eelf.version>
Timoney, Dan (dt5972)d7d47b42019-01-04 10:43:33 -050043 <sli.version>0.4.1-SNAPSHOT</sli.version>
Muthuramalingam, Brinda Santh3d281342019-01-11 11:30:40 -050044 <guava.version>27.0.1-jre</guava.version>
Muthuramalingam, Brinda Santh(bs2796)d2ec19b2018-11-19 12:48:31 -050045 <jython.version>2.7.1</jython.version>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +000046 <springfox.swagger2.version>2.9.2</springfox.swagger2.version>
47 <h2database.version>1.4.197</h2database.version>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -050048 <onap.logger.slf4j>1.2.2</onap.logger.slf4j>
Muthuramalingam, Brinda Santh(bs2796)c6ffd3c2018-11-10 11:54:05 -050049 <powermock.version>1.7.4</powermock.version>
Muthuramalingam, Brinda Santhb8236b92019-02-15 09:15:35 -050050 <mockk.version>1.9</mockk.version>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +000051 </properties>
52 <dependencyManagement>
53 <dependencies>
Muthuramalingam, Brinda Santh(bs2796)ee467d72018-08-23 15:54:30 +000054 <!-- Spring Boot -->
55 <dependency>
56 <groupId>org.springframework.boot</groupId>
57 <artifactId>spring-boot-starter-parent</artifactId>
58 <version>${spring.boot.version}</version>
59 <type>pom</type>
60 <scope>import</scope>
61 </dependency>
62
63 <!-- Logging Dependencies -->
64 <dependency>
65 <groupId>com.att.eelf</groupId>
66 <artifactId>eelf-core</artifactId>
67 <version>${eelf.version}</version>
68 </dependency>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -050069 <dependency>
70 <groupId>org.onap.logging-analytics</groupId>
71 <artifactId>logging-slf4j</artifactId>
72 <version>${onap.logger.slf4j}</version>
73 </dependency>
Muthuramalingam, Brinda Santh(bs2796)ee467d72018-08-23 15:54:30 +000074
Muthuramalingam, Brinda Santh3d281342019-01-11 11:30:40 -050075 <!--Swagger Dependencies -->
76 <dependency>
77 <groupId>io.springfox</groupId>
78 <artifactId>springfox-swagger2</artifactId>
79 <version>${springfox.swagger2.version}</version>
80 </dependency>
81 <dependency>
82 <groupId>io.springfox</groupId>
83 <artifactId>springfox-swagger-ui</artifactId>
84 <version>${springfox.swagger2.version}</version>
85 </dependency>
86
87 <!-- Common Utils Dependencies -->
88 <dependency>
89 <groupId>org.apache.commons</groupId>
90 <artifactId>commons-lang3</artifactId>
91 <version>3.2.1</version>
92 </dependency>
93 <dependency>
94 <groupId>commons-collections</groupId>
95 <artifactId>commons-collections</artifactId>
96 <version>3.2.2</version>
97 </dependency>
98 <dependency>
99 <groupId>commons-io</groupId>
100 <artifactId>commons-io</artifactId>
101 <version>2.6</version>
102 </dependency>
103 <dependency>
104 <groupId>org.apache.commons</groupId>
105 <artifactId>commons-compress</artifactId>
106 <version>1.15</version>
107 </dependency>
108 <dependency>
109 <groupId>org.apache.velocity</groupId>
110 <artifactId>velocity</artifactId>
111 <version>1.7</version>
112 </dependency>
113 <dependency>
114 <groupId>com.google.guava</groupId>
115 <artifactId>guava</artifactId>
116 <version>${guava.version}</version>
117 </dependency>
118 <dependency>
119 <groupId>org.python</groupId>
120 <artifactId>jython-standalone</artifactId>
121 <version>${jython.version}</version>
122 </dependency>
123
Muthuramalingam, Brinda Santh(bs2796)ee467d72018-08-23 15:54:30 +0000124 <!-- Kotlin Dependencies -->
125 <dependency>
126 <groupId>org.jetbrains.kotlin</groupId>
127 <artifactId>kotlin-stdlib</artifactId>
128 <version>${kotlin.version}</version>
129 </dependency>
130 <dependency>
Muthuramalingam, Brinda Santh3d281342019-01-11 11:30:40 -0500131 <groupId>org.jetbrains.kotlin</groupId>
Muthuramalingam, Brinda Santh94df5102019-01-23 11:42:13 -0500132 <artifactId>kotlin-stdlib-common</artifactId>
133 <version>${kotlin.version}</version>
134 </dependency>
Muthuramalingam, Brinda Santhb20d5172019-01-25 20:17:35 -0500135 <!--Use kotlin-compiler-embeddable instead koltin-compiler wrap-->
136 <!--guava dependency inside kotlin-compiler creating classpath issues at runtime-->
Muthuramalingam, Brinda Santh94df5102019-01-23 11:42:13 -0500137 <dependency>
138 <groupId>org.jetbrains.kotlin</groupId>
Muthuramalingam, Brinda Santh3d281342019-01-11 11:30:40 -0500139 <artifactId>kotlin-scripting-jvm-host</artifactId>
140 <version>${kotlin.version}</version>
Muthuramalingam, Brinda Santhb20d5172019-01-25 20:17:35 -0500141 <exclusions>
142 <exclusion>
143 <groupId>org.jetbrains.kotlin</groupId>
144 <artifactId>kotlin-compile</artifactId>
145 </exclusion>
146 </exclusions>
Muthuramalingam, Brinda Santh3d281342019-01-11 11:30:40 -0500147 </dependency>
148 <dependency>
149 <groupId>org.jetbrains.kotlin</groupId>
150 <artifactId>kotlin-compiler-embeddable</artifactId>
151 <version>${kotlin.version}</version>
Muthuramalingam, Brinda Santh3d281342019-01-11 11:30:40 -0500152 </dependency>
153 <dependency>
154 <groupId>org.jetbrains.kotlin</groupId>
155 <artifactId>kotlin-script-util</artifactId>
156 <version>${kotlin.version}</version>
157 </dependency>
158 <dependency>
159 <groupId>org.jetbrains.kotlin</groupId>
160 <artifactId>kotlin-script-runtime</artifactId>
161 <version>${kotlin.version}</version>
162 </dependency>
163 <dependency>
Muthuramalingam, Brinda Santh(bs2796)aa927022018-11-24 14:25:26 -0500164 <groupId>org.jetbrains.kotlinx</groupId>
165 <artifactId>kotlinx-coroutines-core</artifactId>
Muthuramalingam, Brinda Santh(bs2796)c6ffd3c2018-11-10 11:54:05 -0500166 <version>${kotlin.couroutines.version}</version>
Muthuramalingam, Brinda Santh(bs2796)ee467d72018-08-23 15:54:30 +0000167 </dependency>
168 <dependency>
Muthuramalingam, Brinda Santh(bs2796)cf6cf512018-12-20 11:16:31 -0500169 <groupId>org.jetbrains.kotlinx</groupId>
170 <artifactId>kotlinx-coroutines-reactor</artifactId>
171 <version>${kotlin.couroutines.version}</version>
172 </dependency>
173 <dependency>
Muthuramalingam, Brinda Santh(bs2796)ee467d72018-08-23 15:54:30 +0000174 <groupId>org.jetbrains.kotlin</groupId>
175 <artifactId>kotlin-reflect</artifactId>
176 <version>${kotlin.version}</version>
177 </dependency>
Muthuramalingam, Brinda Santh(bs2796)c6ffd3c2018-11-10 11:54:05 -0500178 <dependency>
179 <groupId>org.jetbrains.kotlin</groupId>
180 <artifactId>kotlin-stdlib-jdk8</artifactId>
181 <version>${kotlin.version}</version>
182 </dependency>
183 <dependency>
184 <groupId>org.jetbrains.kotlin</groupId>
185 <artifactId>kotlin-stdlib-jdk7</artifactId>
186 <version>${kotlin.version}</version>
187 </dependency>
188
Muthuramalingam, Brinda Santh(bs2796)aa927022018-11-24 14:25:26 -0500189 <!-- GRPC Dependencies -->
190 <dependency>
191 <groupId>io.grpc</groupId>
Muthuramalingam, Brinda Santh(bs2796)43aeebf2018-12-01 19:54:07 -0500192 <artifactId>grpc-core</artifactId>
193 <version>${grpc.version}</version>
194 </dependency>
195 <dependency>
196 <groupId>io.grpc</groupId>
Muthuramalingam, Brinda Santh(bs2796)aa927022018-11-24 14:25:26 -0500197 <artifactId>grpc-netty</artifactId>
198 <version>${grpc.version}</version>
199 </dependency>
200 <dependency>
201 <groupId>io.grpc</groupId>
202 <artifactId>grpc-protobuf</artifactId>
203 <version>${grpc.version}</version>
204 </dependency>
205 <dependency>
206 <groupId>io.grpc</groupId>
207 <artifactId>grpc-stub</artifactId>
208 <version>${grpc.version}</version>
209 </dependency>
Muthuramalingam, Brinda Santh(bs2796)3b4a7eb2018-12-07 16:37:03 -0500210 <dependency>
211 <groupId>com.google.protobuf</groupId>
212 <artifactId>protobuf-java-util</artifactId>
213 <version>${protobuff.java.utils.version}</version>
214 </dependency>
Alexis de Talhouëtee02d9a2019-03-04 10:22:04 -0500215 <dependency>
216 <groupId>org.onap.ccsdk.apps.components</groupId>
217 <artifactId>proto-definition</artifactId>
218 <version>${project.version}</version>
219 </dependency>
Muthuramalingam, Brinda Santh(bs2796)aa927022018-11-24 14:25:26 -0500220
Muthuramalingam, Brinda Santh(bs2796)cbbe0ea2018-11-13 16:47:33 -0500221 <!-- SLI Version -->
222 <dependency>
223 <groupId>org.onap.ccsdk.sli.core</groupId>
224 <artifactId>sli-provider</artifactId>
225 <version>${sli.version}</version>
226 <exclusions>
227 <exclusion>
228 <groupId>commons-lang</groupId>
229 <artifactId>commons-lang</artifactId>
230 </exclusion>
231 <exclusion>
232 <groupId>org.apache.commons</groupId>
233 <artifactId>*</artifactId>
234 </exclusion>
235 <exclusion>
236 <groupId>org.slf4j</groupId>
237 <artifactId>*</artifactId>
238 </exclusion>
239 <exclusion>
240 <groupId>org.opendaylight.mdsal.model</groupId>
241 <artifactId>*</artifactId>
242 </exclusion>
Muthuramalingam, Brinda Santh(bs2796)66439ec2018-12-17 11:15:28 -0500243 <exclusion>
244 <groupId>org.opendaylight.controller</groupId>
245 <artifactId>*</artifactId>
246 </exclusion>
Muthuramalingam, Brinda Santh(bs2796)cbbe0ea2018-11-13 16:47:33 -0500247 <exclusion>
248 <groupId>org.apache.tomcat</groupId>
249 <artifactId>*</artifactId>
250 </exclusion>
251 <exclusion>
252 <groupId>org.apache.karaf.shell</groupId>
253 <artifactId>*</artifactId>
254 </exclusion>
255 <exclusion>
256 <groupId>org.mariadb.jdbc</groupId>
257 <artifactId>*</artifactId>
258 </exclusion>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500259 <exclusion>
260 <groupId>org.powermock</groupId>
261 <artifactId>*</artifactId>
262 </exclusion>
Muthuramalingam, Brinda Santh(bs2796)cbbe0ea2018-11-13 16:47:33 -0500263 </exclusions>
264 </dependency>
265
Muthuramalingam, Brinda Santh(bs2796)ee467d72018-08-23 15:54:30 +0000266
Muthuramalingam, Brinda Santhfd2d3f42019-03-11 11:41:37 -0400267 <!-- Blueprint Processor Application Module Dependencies -->
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000268 <dependency>
269 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
Muthuramalingam, Brinda Santhfd2d3f42019-03-11 11:41:37 -0400270 <artifactId>processor-core</artifactId>
Steve Alphonse Siania5f9b6f2019-01-21 11:55:48 -0500271 <version>${project.version}</version>
272 </dependency>
273 <dependency>
274 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000275 <artifactId>db-lib</artifactId>
276 <version>${project.version}</version>
277 </dependency>
278 <dependency>
279 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
280 <artifactId>rest-lib</artifactId>
281 <version>${project.version}</version>
282 </dependency>
283 <dependency>
284 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
Muthuramalingam, Brinda Santhfd2d3f42019-03-11 11:41:37 -0400285 <artifactId>dmaap-lib</artifactId>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000286 <version>${project.version}</version>
287 </dependency>
288 <dependency>
289 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000290 <artifactId>execution-service</artifactId>
291 <version>${project.version}</version>
292 </dependency>
293 <dependency>
294 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
Muthuramalingam, Brinda Santh(bs2796)cbbe0ea2018-11-13 16:47:33 -0500295 <artifactId>workflow-service</artifactId>
296 <version>${project.version}</version>
297 </dependency>
298 <dependency>
299 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000300 <artifactId>resource-api</artifactId>
301 <version>${project.version}</version>
302 </dependency>
303 <dependency>
304 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
305 <artifactId>selfservice-api</artifactId>
306 <version>${project.version}</version>
307 </dependency>
Muthuramalingam, Brinda Santhfd2d3f42019-03-11 11:41:37 -0400308 <dependency>
309 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
310 <artifactId>application</artifactId>
311 <version>${project.version}</version>
312 </dependency>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000313
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500314 <!-- Functions -->
315 <dependency>
316 <groupId>org.onap.ccsdk.apps.blueprintsprocessor.functions</groupId>
317 <artifactId>resource-resolution</artifactId>
318 <version>${project.version}</version>
319 </dependency>
Muthuramalingam, Brinda Santh(bs2796)88c3ca22018-12-04 20:53:22 -0500320 <dependency>
321 <groupId>org.onap.ccsdk.apps.blueprintsprocessor.functions</groupId>
322 <artifactId>python-executor</artifactId>
323 <version>${project.version}</version>
324 </dependency>
325 <dependency>
326 <groupId>org.onap.ccsdk.apps.blueprintsprocessor.functions</groupId>
327 <artifactId>netconf-executor</artifactId>
328 <version>${project.version}</version>
329 </dependency>
Muthuramalingam, Brinda Santh2f15f492019-02-12 15:53:39 -0500330 <dependency>
331 <groupId>org.onap.ccsdk.apps.blueprintsprocessor.functions</groupId>
332 <artifactId>restconf-executor</artifactId>
333 <version>${project.version}</version>
334 </dependency>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500335
Muthuramalingam, Brinda Santhfd2d3f42019-03-11 11:41:37 -0400336 <!-- Controller Blueprints Application Dependency -->
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000337 <dependency>
Muthuramalingam, Brinda Santh(bs2796)ee467d72018-08-23 15:54:30 +0000338 <groupId>org.onap.ccsdk.apps.controllerblueprints</groupId>
339 <artifactId>resource-dict</artifactId>
Muthuramalingam, Brinda Santh(bs2796)c6ffd3c2018-11-10 11:54:05 -0500340 <version>${project.version}</version>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000341 </dependency>
Steve Alphonse Siania5f9b6f2019-01-21 11:55:48 -0500342 <dependency>
343 <groupId>org.onap.ccsdk.apps.controllerblueprints</groupId>
Muthuramalingam, Brinda Santh2ecd4e72019-02-07 14:51:50 -0500344 <artifactId>blueprint-core</artifactId>
Steve Alphonse Siania5f9b6f2019-01-21 11:55:48 -0500345 <version>${project.version}</version>
346 </dependency>
Muthuramalingam, Brinda Santhfd14fc12019-01-30 15:52:30 -0500347 <dependency>
348 <groupId>org.onap.ccsdk.apps.controllerblueprints</groupId>
349 <artifactId>blueprint-scripts</artifactId>
350 <version>${project.version}</version>
351 </dependency>
Muthuramalingam, Brinda Santh5ad9dd12019-02-22 10:14:24 -0500352 <dependency>
353 <groupId>org.onap.ccsdk.apps.controllerblueprints</groupId>
Muthuramalingam, Brinda Santhfd2d3f42019-03-11 11:41:37 -0400354 <artifactId>db-resources</artifactId>
355 <version>${project.version}</version>
356 </dependency>
357 <dependency>
358 <groupId>org.onap.ccsdk.apps.controllerblueprints</groupId>
Muthuramalingam, Brinda Santh5ad9dd12019-02-22 10:14:24 -0500359 <artifactId>blueprint-validation</artifactId>
360 <version>${project.version}</version>
361 </dependency>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000362
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000363 <!-- Database -->
364 <dependency>
365 <groupId>com.h2database</groupId>
366 <artifactId>h2</artifactId>
367 <version>${h2database.version}</version>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500368 <scope>test</scope>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000369 </dependency>
Muthuramalingam, Brinda Santhfd2d3f42019-03-11 11:41:37 -0400370
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000371 <!-- Test Dependency -->
372 <dependency>
Muthuramalingam, Brinda Santhb8236b92019-02-15 09:15:35 -0500373 <groupId>io.mockk</groupId>
374 <artifactId>mockk</artifactId>
375 <version>${mockk.version}</version>
376 <scope>test</scope>
377 </dependency>
378 <dependency>
Brinda Santhafbc1522018-08-23 23:34:05 -0400379 <groupId>org.powermock</groupId>
380 <artifactId>powermock-api-mockito2</artifactId>
Muthuramalingam, Brinda Santh(bs2796)c6ffd3c2018-11-10 11:54:05 -0500381 <version>${powermock.version}</version>
Brinda Santhafbc1522018-08-23 23:34:05 -0400382 <scope>test</scope>
383 </dependency>
384 <dependency>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000385 <groupId>org.jetbrains.kotlin</groupId>
Muthuramalingam, Brinda Santh(bs2796)c6ffd3c2018-11-10 11:54:05 -0500386 <artifactId>kotlin-test-junit</artifactId>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000387 <version>${kotlin.version}</version>
388 <scope>test</scope>
389 </dependency>
Muthuramalingam, Brinda Santh(bs2796)43aeebf2018-12-01 19:54:07 -0500390 <dependency>
Muthuramalingam, Brinda Santhb8236b92019-02-15 09:15:35 -0500391 <groupId>org.jetbrains.kotlinx</groupId>
392 <artifactId>kotlinx-coroutines-test</artifactId>
393 <version>${kotlin.couroutines.version}</version>
394 <scope>test</scope>
395 </dependency>
396 <dependency>
Muthuramalingam, Brinda Santh(bs2796)43aeebf2018-12-01 19:54:07 -0500397 <groupId>io.grpc</groupId>
398 <artifactId>grpc-testing</artifactId>
399 <version>${grpc.version}</version>
400 <scope>test</scope>
401 </dependency>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000402 </dependencies>
403 </dependencyManagement>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000404
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500405 <dependencies>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000406 <dependency>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500407 <groupId>com.att.eelf</groupId>
408 <artifactId>eelf-core</artifactId>
409 </dependency>
410 <dependency>
411 <groupId>org.onap.logging-analytics</groupId>
412 <artifactId>logging-slf4j</artifactId>
413 </dependency>
414 <dependency>
415 <groupId>org.apache.commons</groupId>
416 <artifactId>commons-lang3</artifactId>
417 </dependency>
418 <dependency>
419 <groupId>commons-collections</groupId>
420 <artifactId>commons-collections</artifactId>
421 </dependency>
422 <dependency>
423 <groupId>commons-io</groupId>
424 <artifactId>commons-io</artifactId>
425 </dependency>
426 <dependency>
Muthuramalingam, Brinda Santh3d281342019-01-11 11:30:40 -0500427 <groupId>org.apache.commons</groupId>
428 <artifactId>commons-compress</artifactId>
429 </dependency>
430 <dependency>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500431 <groupId>com.jayway.jsonpath</groupId>
432 <artifactId>json-path</artifactId>
433 </dependency>
434 <dependency>
Muthuramalingam, Brinda Santh3d281342019-01-11 11:30:40 -0500435 <groupId>com.google.guava</groupId>
436 <artifactId>guava</artifactId>
437 </dependency>
438 <dependency>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500439 <groupId>io.springfox</groupId>
440 <artifactId>springfox-swagger2</artifactId>
441 </dependency>
442 <dependency>
443 <groupId>io.springfox</groupId>
444 <artifactId>springfox-swagger-ui</artifactId>
445 </dependency>
446 <dependency>
447 <groupId>org.jetbrains.kotlin</groupId>
448 <artifactId>kotlin-stdlib</artifactId>
449 </dependency>
450 <dependency>
451 <groupId>org.jetbrains.kotlin</groupId>
Muthuramalingam, Brinda Santh3d281342019-01-11 11:30:40 -0500452 <artifactId>kotlin-script-util</artifactId>
453 </dependency>
454 <dependency>
455 <groupId>org.jetbrains.kotlin</groupId>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500456 <artifactId>kotlin-stdlib-jdk8</artifactId>
457 </dependency>
458 <dependency>
Muthuramalingam, Brinda Santh3d281342019-01-11 11:30:40 -0500459 <groupId>org.jetbrains.kotlinx</groupId>
460 <artifactId>kotlinx-coroutines-core</artifactId>
461 </dependency>
462 <dependency>
463 <groupId>org.jetbrains.kotlinx</groupId>
464 <artifactId>kotlinx-coroutines-reactor</artifactId>
465 </dependency>
466 <dependency>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500467 <groupId>com.fasterxml.jackson.module</groupId>
468 <artifactId>jackson-module-kotlin</artifactId>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000469 </dependency>
Muthuramalingam, Brinda Santh3d281342019-01-11 11:30:40 -0500470 <dependency>
471 <groupId>org.jetbrains.kotlin</groupId>
Alexis de Talhouët4a65d472019-01-17 16:47:46 -0500472 <artifactId>kotlin-compiler-embeddable</artifactId>
473 </dependency>
474 <dependency>
475 <groupId>org.jetbrains.kotlin</groupId>
Muthuramalingam, Brinda Santh3d281342019-01-11 11:30:40 -0500476 <artifactId>kotlin-scripting-jvm-host</artifactId>
Alexis de Talhouët4a65d472019-01-17 16:47:46 -0500477 <!--Use kotlin-compiler-embeddable as koltin-compiler wrap-->
478 <!--guava dependency creating classpath issues at runtime-->
479 <exclusions>
480 <exclusion>
481 <groupId>org.jetbrains.kotlin</groupId>
482 <artifactId>kotlin-compiler</artifactId>
483 </exclusion>
484 </exclusions>
Muthuramalingam, Brinda Santh3d281342019-01-11 11:30:40 -0500485 </dependency>
Muthuramalingam, Brinda Santh(bs2796)aa927022018-11-24 14:25:26 -0500486 <!-- GRPC Dependencies -->
487 <dependency>
488 <groupId>io.grpc</groupId>
489 <artifactId>grpc-netty</artifactId>
490 </dependency>
491 <dependency>
492 <groupId>io.grpc</groupId>
493 <artifactId>grpc-protobuf</artifactId>
494 </dependency>
495 <dependency>
496 <groupId>io.grpc</groupId>
497 <artifactId>grpc-stub</artifactId>
498 </dependency>
Muthuramalingam, Brinda Santh(bs2796)3b4a7eb2018-12-07 16:37:03 -0500499 <dependency>
500 <groupId>com.google.protobuf</groupId>
501 <artifactId>protobuf-java-util</artifactId>
502 </dependency>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000503 </dependencies>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500504
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000505 <build>
506 <plugins>
507 <plugin>
508 <groupId>org.jetbrains.kotlin</groupId>
509 <artifactId>kotlin-maven-plugin</artifactId>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500510 <version>${kotlin.maven.version}</version>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000511 <executions>
512 <execution>
513 <id>compile</id>
Muthuramalingam, Brinda Santh(bs2796)cbbe0ea2018-11-13 16:47:33 -0500514 <goals>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000515 <goal>compile</goal>
516 </goals>
517 <configuration>
518 <sourceDirs>
519 <sourceDir>${project.basedir}/src/main/kotlin</sourceDir>
520 <sourceDir>${project.basedir}/src/main/java</sourceDir>
521 </sourceDirs>
522 </configuration>
523 </execution>
524 <execution>
525 <id>test-compile</id>
526 <goals>
527 <goal>test-compile</goal>
528 </goals>
529 <configuration>
530 <sourceDirs>
531 <sourceDir>${project.basedir}/src/test/kotlin</sourceDir>
532 <sourceDir>${project.basedir}/src/test/java</sourceDir>
533 </sourceDirs>
534 </configuration>
535 </execution>
536 </executions>
537 </plugin>
538 <plugin>
539 <groupId>org.apache.maven.plugins</groupId>
540 <artifactId>maven-compiler-plugin</artifactId>
541 <version>3.5.1</version>
542 <configuration>
543 <source>${maven.compiler.source}</source>
544 <target>${maven.compiler.target}</target>
545 </configuration>
546 </plugin>
547 </plugins>
548 </build>
549</project>