blob: cad5a4b36123e9bbf1160b419c34360dc07886c8 [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 Santhb20d5172019-01-25 20:17:35 -050035 <spring.boot.version>2.1.2.RELEASE</spring.boot.version>
36 <spring.version>5.1.4.RELEASE</spring.version>
37 <kotlin.version>1.3.20</kotlin.version>
38 <kotlin.maven.version>1.3.20</kotlin.maven.version>
39 <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 Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000267 <!-- Application Module Dependencies -->
268 <dependency>
269 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
Steve Alphonse Siania5f9b6f2019-01-21 11:55:48 -0500270 <artifactId>application</artifactId>
271 <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>
285 <artifactId>core</artifactId>
286 <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>
308
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500309 <!-- Functions -->
310 <dependency>
311 <groupId>org.onap.ccsdk.apps.blueprintsprocessor.functions</groupId>
312 <artifactId>resource-resolution</artifactId>
313 <version>${project.version}</version>
314 </dependency>
Muthuramalingam, Brinda Santh(bs2796)88c3ca22018-12-04 20:53:22 -0500315 <dependency>
316 <groupId>org.onap.ccsdk.apps.blueprintsprocessor.functions</groupId>
317 <artifactId>python-executor</artifactId>
318 <version>${project.version}</version>
319 </dependency>
320 <dependency>
321 <groupId>org.onap.ccsdk.apps.blueprintsprocessor.functions</groupId>
322 <artifactId>netconf-executor</artifactId>
323 <version>${project.version}</version>
324 </dependency>
Muthuramalingam, Brinda Santh2f15f492019-02-12 15:53:39 -0500325 <dependency>
326 <groupId>org.onap.ccsdk.apps.blueprintsprocessor.functions</groupId>
327 <artifactId>restconf-executor</artifactId>
328 <version>${project.version}</version>
329 </dependency>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500330
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000331 <!-- Application Component Dependency -->
332 <dependency>
Muthuramalingam, Brinda Santh(bs2796)ee467d72018-08-23 15:54:30 +0000333 <groupId>org.onap.ccsdk.apps.controllerblueprints</groupId>
334 <artifactId>resource-dict</artifactId>
Muthuramalingam, Brinda Santh(bs2796)c6ffd3c2018-11-10 11:54:05 -0500335 <version>${project.version}</version>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000336 </dependency>
Steve Alphonse Siania5f9b6f2019-01-21 11:55:48 -0500337 <dependency>
338 <groupId>org.onap.ccsdk.apps.controllerblueprints</groupId>
Muthuramalingam, Brinda Santh2ecd4e72019-02-07 14:51:50 -0500339 <artifactId>blueprint-core</artifactId>
Steve Alphonse Siania5f9b6f2019-01-21 11:55:48 -0500340 <version>${project.version}</version>
341 </dependency>
Muthuramalingam, Brinda Santhfd14fc12019-01-30 15:52:30 -0500342 <dependency>
343 <groupId>org.onap.ccsdk.apps.controllerblueprints</groupId>
344 <artifactId>blueprint-scripts</artifactId>
345 <version>${project.version}</version>
346 </dependency>
Muthuramalingam, Brinda Santh5ad9dd12019-02-22 10:14:24 -0500347 <dependency>
348 <groupId>org.onap.ccsdk.apps.controllerblueprints</groupId>
349 <artifactId>blueprint-validation</artifactId>
350 <version>${project.version}</version>
351 </dependency>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000352
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000353 <!-- Database -->
354 <dependency>
355 <groupId>com.h2database</groupId>
356 <artifactId>h2</artifactId>
357 <version>${h2database.version}</version>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500358 <scope>test</scope>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000359 </dependency>
360 <!-- Test Dependency -->
361 <dependency>
Muthuramalingam, Brinda Santhb8236b92019-02-15 09:15:35 -0500362 <groupId>io.mockk</groupId>
363 <artifactId>mockk</artifactId>
364 <version>${mockk.version}</version>
365 <scope>test</scope>
366 </dependency>
367 <dependency>
Brinda Santhafbc1522018-08-23 23:34:05 -0400368 <groupId>org.powermock</groupId>
369 <artifactId>powermock-api-mockito2</artifactId>
Muthuramalingam, Brinda Santh(bs2796)c6ffd3c2018-11-10 11:54:05 -0500370 <version>${powermock.version}</version>
Brinda Santhafbc1522018-08-23 23:34:05 -0400371 <scope>test</scope>
372 </dependency>
373 <dependency>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000374 <groupId>org.jetbrains.kotlin</groupId>
Muthuramalingam, Brinda Santh(bs2796)c6ffd3c2018-11-10 11:54:05 -0500375 <artifactId>kotlin-test-junit</artifactId>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000376 <version>${kotlin.version}</version>
377 <scope>test</scope>
378 </dependency>
Muthuramalingam, Brinda Santh(bs2796)43aeebf2018-12-01 19:54:07 -0500379 <dependency>
Muthuramalingam, Brinda Santhb8236b92019-02-15 09:15:35 -0500380 <groupId>org.jetbrains.kotlinx</groupId>
381 <artifactId>kotlinx-coroutines-test</artifactId>
382 <version>${kotlin.couroutines.version}</version>
383 <scope>test</scope>
384 </dependency>
385 <dependency>
Muthuramalingam, Brinda Santh(bs2796)43aeebf2018-12-01 19:54:07 -0500386 <groupId>io.grpc</groupId>
387 <artifactId>grpc-testing</artifactId>
388 <version>${grpc.version}</version>
389 <scope>test</scope>
390 </dependency>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000391 </dependencies>
392 </dependencyManagement>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000393
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500394 <dependencies>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000395 <dependency>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500396 <groupId>com.att.eelf</groupId>
397 <artifactId>eelf-core</artifactId>
398 </dependency>
399 <dependency>
400 <groupId>org.onap.logging-analytics</groupId>
401 <artifactId>logging-slf4j</artifactId>
402 </dependency>
403 <dependency>
404 <groupId>org.apache.commons</groupId>
405 <artifactId>commons-lang3</artifactId>
406 </dependency>
407 <dependency>
408 <groupId>commons-collections</groupId>
409 <artifactId>commons-collections</artifactId>
410 </dependency>
411 <dependency>
412 <groupId>commons-io</groupId>
413 <artifactId>commons-io</artifactId>
414 </dependency>
415 <dependency>
Muthuramalingam, Brinda Santh3d281342019-01-11 11:30:40 -0500416 <groupId>org.apache.commons</groupId>
417 <artifactId>commons-compress</artifactId>
418 </dependency>
419 <dependency>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500420 <groupId>com.jayway.jsonpath</groupId>
421 <artifactId>json-path</artifactId>
422 </dependency>
423 <dependency>
Muthuramalingam, Brinda Santh3d281342019-01-11 11:30:40 -0500424 <groupId>com.google.guava</groupId>
425 <artifactId>guava</artifactId>
426 </dependency>
427 <dependency>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500428 <groupId>io.springfox</groupId>
429 <artifactId>springfox-swagger2</artifactId>
430 </dependency>
431 <dependency>
432 <groupId>io.springfox</groupId>
433 <artifactId>springfox-swagger-ui</artifactId>
434 </dependency>
435 <dependency>
436 <groupId>org.jetbrains.kotlin</groupId>
437 <artifactId>kotlin-stdlib</artifactId>
438 </dependency>
439 <dependency>
440 <groupId>org.jetbrains.kotlin</groupId>
Muthuramalingam, Brinda Santh3d281342019-01-11 11:30:40 -0500441 <artifactId>kotlin-script-util</artifactId>
442 </dependency>
443 <dependency>
444 <groupId>org.jetbrains.kotlin</groupId>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500445 <artifactId>kotlin-stdlib-jdk8</artifactId>
446 </dependency>
447 <dependency>
Muthuramalingam, Brinda Santh3d281342019-01-11 11:30:40 -0500448 <groupId>org.jetbrains.kotlinx</groupId>
449 <artifactId>kotlinx-coroutines-core</artifactId>
450 </dependency>
451 <dependency>
452 <groupId>org.jetbrains.kotlinx</groupId>
453 <artifactId>kotlinx-coroutines-reactor</artifactId>
454 </dependency>
455 <dependency>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500456 <groupId>com.fasterxml.jackson.module</groupId>
457 <artifactId>jackson-module-kotlin</artifactId>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000458 </dependency>
Muthuramalingam, Brinda Santh3d281342019-01-11 11:30:40 -0500459 <dependency>
460 <groupId>org.jetbrains.kotlin</groupId>
Alexis de Talhouët4a65d472019-01-17 16:47:46 -0500461 <artifactId>kotlin-compiler-embeddable</artifactId>
462 </dependency>
463 <dependency>
464 <groupId>org.jetbrains.kotlin</groupId>
Muthuramalingam, Brinda Santh3d281342019-01-11 11:30:40 -0500465 <artifactId>kotlin-scripting-jvm-host</artifactId>
Alexis de Talhouët4a65d472019-01-17 16:47:46 -0500466 <!--Use kotlin-compiler-embeddable as koltin-compiler wrap-->
467 <!--guava dependency creating classpath issues at runtime-->
468 <exclusions>
469 <exclusion>
470 <groupId>org.jetbrains.kotlin</groupId>
471 <artifactId>kotlin-compiler</artifactId>
472 </exclusion>
473 </exclusions>
Muthuramalingam, Brinda Santh3d281342019-01-11 11:30:40 -0500474 </dependency>
Muthuramalingam, Brinda Santh(bs2796)aa927022018-11-24 14:25:26 -0500475 <!-- GRPC Dependencies -->
476 <dependency>
477 <groupId>io.grpc</groupId>
478 <artifactId>grpc-netty</artifactId>
479 </dependency>
480 <dependency>
481 <groupId>io.grpc</groupId>
482 <artifactId>grpc-protobuf</artifactId>
483 </dependency>
484 <dependency>
485 <groupId>io.grpc</groupId>
486 <artifactId>grpc-stub</artifactId>
487 </dependency>
Muthuramalingam, Brinda Santh(bs2796)3b4a7eb2018-12-07 16:37:03 -0500488 <dependency>
489 <groupId>com.google.protobuf</groupId>
490 <artifactId>protobuf-java-util</artifactId>
491 </dependency>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000492 </dependencies>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500493
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000494 <build>
495 <plugins>
496 <plugin>
497 <groupId>org.jetbrains.kotlin</groupId>
498 <artifactId>kotlin-maven-plugin</artifactId>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500499 <version>${kotlin.maven.version}</version>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000500 <executions>
501 <execution>
502 <id>compile</id>
Muthuramalingam, Brinda Santh(bs2796)cbbe0ea2018-11-13 16:47:33 -0500503 <goals>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000504 <goal>compile</goal>
505 </goals>
506 <configuration>
507 <sourceDirs>
508 <sourceDir>${project.basedir}/src/main/kotlin</sourceDir>
509 <sourceDir>${project.basedir}/src/main/java</sourceDir>
510 </sourceDirs>
511 </configuration>
512 </execution>
513 <execution>
514 <id>test-compile</id>
515 <goals>
516 <goal>test-compile</goal>
517 </goals>
518 <configuration>
519 <sourceDirs>
520 <sourceDir>${project.basedir}/src/test/kotlin</sourceDir>
521 <sourceDir>${project.basedir}/src/test/java</sourceDir>
522 </sourceDirs>
523 </configuration>
524 </execution>
525 </executions>
526 </plugin>
527 <plugin>
528 <groupId>org.apache.maven.plugins</groupId>
529 <artifactId>maven-compiler-plugin</artifactId>
530 <version>3.5.1</version>
531 <configuration>
532 <source>${maven.compiler.source}</source>
533 <target>${maven.compiler.target}</target>
534 </configuration>
535 </plugin>
536 </plugins>
537 </build>
538</project>