blob: 685cf41d6705c8e43f767f579f5032ff75d043f6 [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 Santhb20d5172019-01-25 20:17:35 -050034 <spring.boot.version>2.1.2.RELEASE</spring.boot.version>
35 <spring.version>5.1.4.RELEASE</spring.version>
36 <kotlin.version>1.3.20</kotlin.version>
37 <kotlin.maven.version>1.3.20</kotlin.maven.version>
38 <kotlin.couroutines.version>1.1.1</kotlin.couroutines.version>
Muthuramalingam, Brinda Santh94df5102019-01-23 11:42:13 -050039 <grpc.version>1.18.0</grpc.version>
Muthuramalingam, Brinda Santh(bs2796)3b4a7eb2018-12-07 16:37:03 -050040 <protobuff.java.utils.version>3.6.1</protobuff.java.utils.version>
Muthuramalingam, Brinda Santh(bs2796)ee467d72018-08-23 15:54:30 +000041 <eelf.version>1.0.0</eelf.version>
Timoney, Dan (dt5972)d7d47b42019-01-04 10:43:33 -050042 <sli.version>0.4.1-SNAPSHOT</sli.version>
Muthuramalingam, Brinda Santh3d281342019-01-11 11:30:40 -050043 <guava.version>27.0.1-jre</guava.version>
Muthuramalingam, Brinda Santh(bs2796)d2ec19b2018-11-19 12:48:31 -050044 <jython.version>2.7.1</jython.version>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +000045 <springfox.swagger2.version>2.9.2</springfox.swagger2.version>
46 <h2database.version>1.4.197</h2database.version>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -050047 <onap.logger.slf4j>1.2.2</onap.logger.slf4j>
Muthuramalingam, Brinda Santh(bs2796)c6ffd3c2018-11-10 11:54:05 -050048 <powermock.version>1.7.4</powermock.version>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +000049 </properties>
50 <dependencyManagement>
51 <dependencies>
Muthuramalingam, Brinda Santh(bs2796)ee467d72018-08-23 15:54:30 +000052 <!-- Spring Boot -->
53 <dependency>
54 <groupId>org.springframework.boot</groupId>
55 <artifactId>spring-boot-starter-parent</artifactId>
56 <version>${spring.boot.version}</version>
57 <type>pom</type>
58 <scope>import</scope>
59 </dependency>
60
61 <!-- Logging Dependencies -->
62 <dependency>
63 <groupId>com.att.eelf</groupId>
64 <artifactId>eelf-core</artifactId>
65 <version>${eelf.version}</version>
66 </dependency>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -050067 <dependency>
68 <groupId>org.onap.logging-analytics</groupId>
69 <artifactId>logging-slf4j</artifactId>
70 <version>${onap.logger.slf4j}</version>
71 </dependency>
Muthuramalingam, Brinda Santh(bs2796)ee467d72018-08-23 15:54:30 +000072
Muthuramalingam, Brinda Santh3d281342019-01-11 11:30:40 -050073 <!--Swagger Dependencies -->
74 <dependency>
75 <groupId>io.springfox</groupId>
76 <artifactId>springfox-swagger2</artifactId>
77 <version>${springfox.swagger2.version}</version>
78 </dependency>
79 <dependency>
80 <groupId>io.springfox</groupId>
81 <artifactId>springfox-swagger-ui</artifactId>
82 <version>${springfox.swagger2.version}</version>
83 </dependency>
84
85 <!-- Common Utils Dependencies -->
86 <dependency>
87 <groupId>org.apache.commons</groupId>
88 <artifactId>commons-lang3</artifactId>
89 <version>3.2.1</version>
90 </dependency>
91 <dependency>
92 <groupId>commons-collections</groupId>
93 <artifactId>commons-collections</artifactId>
94 <version>3.2.2</version>
95 </dependency>
96 <dependency>
97 <groupId>commons-io</groupId>
98 <artifactId>commons-io</artifactId>
99 <version>2.6</version>
100 </dependency>
101 <dependency>
102 <groupId>org.apache.commons</groupId>
103 <artifactId>commons-compress</artifactId>
104 <version>1.15</version>
105 </dependency>
106 <dependency>
107 <groupId>org.apache.velocity</groupId>
108 <artifactId>velocity</artifactId>
109 <version>1.7</version>
110 </dependency>
111 <dependency>
112 <groupId>com.google.guava</groupId>
113 <artifactId>guava</artifactId>
114 <version>${guava.version}</version>
115 </dependency>
116 <dependency>
117 <groupId>org.python</groupId>
118 <artifactId>jython-standalone</artifactId>
119 <version>${jython.version}</version>
120 </dependency>
121
Muthuramalingam, Brinda Santh(bs2796)ee467d72018-08-23 15:54:30 +0000122 <!-- Kotlin Dependencies -->
123 <dependency>
124 <groupId>org.jetbrains.kotlin</groupId>
125 <artifactId>kotlin-stdlib</artifactId>
126 <version>${kotlin.version}</version>
127 </dependency>
128 <dependency>
Muthuramalingam, Brinda Santh3d281342019-01-11 11:30:40 -0500129 <groupId>org.jetbrains.kotlin</groupId>
Muthuramalingam, Brinda Santh94df5102019-01-23 11:42:13 -0500130 <artifactId>kotlin-stdlib-common</artifactId>
131 <version>${kotlin.version}</version>
132 </dependency>
Muthuramalingam, Brinda Santhb20d5172019-01-25 20:17:35 -0500133 <!--Use kotlin-compiler-embeddable instead koltin-compiler wrap-->
134 <!--guava dependency inside kotlin-compiler creating classpath issues at runtime-->
Muthuramalingam, Brinda Santh94df5102019-01-23 11:42:13 -0500135 <dependency>
136 <groupId>org.jetbrains.kotlin</groupId>
Muthuramalingam, Brinda Santh3d281342019-01-11 11:30:40 -0500137 <artifactId>kotlin-scripting-jvm-host</artifactId>
138 <version>${kotlin.version}</version>
Muthuramalingam, Brinda Santhb20d5172019-01-25 20:17:35 -0500139 <exclusions>
140 <exclusion>
141 <groupId>org.jetbrains.kotlin</groupId>
142 <artifactId>kotlin-compile</artifactId>
143 </exclusion>
144 </exclusions>
Muthuramalingam, Brinda Santh3d281342019-01-11 11:30:40 -0500145 </dependency>
146 <dependency>
147 <groupId>org.jetbrains.kotlin</groupId>
148 <artifactId>kotlin-compiler-embeddable</artifactId>
149 <version>${kotlin.version}</version>
Muthuramalingam, Brinda Santh3d281342019-01-11 11:30:40 -0500150 </dependency>
151 <dependency>
152 <groupId>org.jetbrains.kotlin</groupId>
153 <artifactId>kotlin-script-util</artifactId>
154 <version>${kotlin.version}</version>
155 </dependency>
156 <dependency>
157 <groupId>org.jetbrains.kotlin</groupId>
158 <artifactId>kotlin-script-runtime</artifactId>
159 <version>${kotlin.version}</version>
160 </dependency>
161 <dependency>
Muthuramalingam, Brinda Santh(bs2796)aa927022018-11-24 14:25:26 -0500162 <groupId>org.jetbrains.kotlinx</groupId>
163 <artifactId>kotlinx-coroutines-core</artifactId>
Muthuramalingam, Brinda Santh(bs2796)c6ffd3c2018-11-10 11:54:05 -0500164 <version>${kotlin.couroutines.version}</version>
Muthuramalingam, Brinda Santh(bs2796)ee467d72018-08-23 15:54:30 +0000165 </dependency>
166 <dependency>
Muthuramalingam, Brinda Santh(bs2796)cf6cf512018-12-20 11:16:31 -0500167 <groupId>org.jetbrains.kotlinx</groupId>
168 <artifactId>kotlinx-coroutines-reactor</artifactId>
169 <version>${kotlin.couroutines.version}</version>
170 </dependency>
171 <dependency>
Muthuramalingam, Brinda Santh(bs2796)ee467d72018-08-23 15:54:30 +0000172 <groupId>org.jetbrains.kotlin</groupId>
173 <artifactId>kotlin-reflect</artifactId>
174 <version>${kotlin.version}</version>
175 </dependency>
Muthuramalingam, Brinda Santh(bs2796)c6ffd3c2018-11-10 11:54:05 -0500176 <dependency>
177 <groupId>org.jetbrains.kotlin</groupId>
178 <artifactId>kotlin-stdlib-jdk8</artifactId>
179 <version>${kotlin.version}</version>
180 </dependency>
181 <dependency>
182 <groupId>org.jetbrains.kotlin</groupId>
183 <artifactId>kotlin-stdlib-jdk7</artifactId>
184 <version>${kotlin.version}</version>
185 </dependency>
186
Muthuramalingam, Brinda Santh(bs2796)aa927022018-11-24 14:25:26 -0500187 <!-- GRPC Dependencies -->
188 <dependency>
189 <groupId>io.grpc</groupId>
Muthuramalingam, Brinda Santh(bs2796)43aeebf2018-12-01 19:54:07 -0500190 <artifactId>grpc-core</artifactId>
191 <version>${grpc.version}</version>
192 </dependency>
193 <dependency>
194 <groupId>io.grpc</groupId>
Muthuramalingam, Brinda Santh(bs2796)aa927022018-11-24 14:25:26 -0500195 <artifactId>grpc-netty</artifactId>
196 <version>${grpc.version}</version>
197 </dependency>
198 <dependency>
199 <groupId>io.grpc</groupId>
200 <artifactId>grpc-protobuf</artifactId>
201 <version>${grpc.version}</version>
202 </dependency>
203 <dependency>
204 <groupId>io.grpc</groupId>
205 <artifactId>grpc-stub</artifactId>
206 <version>${grpc.version}</version>
207 </dependency>
Muthuramalingam, Brinda Santh(bs2796)3b4a7eb2018-12-07 16:37:03 -0500208 <dependency>
209 <groupId>com.google.protobuf</groupId>
210 <artifactId>protobuf-java-util</artifactId>
211 <version>${protobuff.java.utils.version}</version>
212 </dependency>
Muthuramalingam, Brinda Santh(bs2796)aa927022018-11-24 14:25:26 -0500213
Muthuramalingam, Brinda Santh(bs2796)cbbe0ea2018-11-13 16:47:33 -0500214 <!-- SLI Version -->
215 <dependency>
216 <groupId>org.onap.ccsdk.sli.core</groupId>
217 <artifactId>sli-provider</artifactId>
218 <version>${sli.version}</version>
219 <exclusions>
220 <exclusion>
221 <groupId>commons-lang</groupId>
222 <artifactId>commons-lang</artifactId>
223 </exclusion>
224 <exclusion>
225 <groupId>org.apache.commons</groupId>
226 <artifactId>*</artifactId>
227 </exclusion>
228 <exclusion>
229 <groupId>org.slf4j</groupId>
230 <artifactId>*</artifactId>
231 </exclusion>
232 <exclusion>
233 <groupId>org.opendaylight.mdsal.model</groupId>
234 <artifactId>*</artifactId>
235 </exclusion>
Muthuramalingam, Brinda Santh(bs2796)66439ec2018-12-17 11:15:28 -0500236 <exclusion>
237 <groupId>org.opendaylight.controller</groupId>
238 <artifactId>*</artifactId>
239 </exclusion>
Muthuramalingam, Brinda Santh(bs2796)cbbe0ea2018-11-13 16:47:33 -0500240 <exclusion>
241 <groupId>org.apache.tomcat</groupId>
242 <artifactId>*</artifactId>
243 </exclusion>
244 <exclusion>
245 <groupId>org.apache.karaf.shell</groupId>
246 <artifactId>*</artifactId>
247 </exclusion>
248 <exclusion>
249 <groupId>org.mariadb.jdbc</groupId>
250 <artifactId>*</artifactId>
251 </exclusion>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500252 <exclusion>
253 <groupId>org.powermock</groupId>
254 <artifactId>*</artifactId>
255 </exclusion>
Muthuramalingam, Brinda Santh(bs2796)cbbe0ea2018-11-13 16:47:33 -0500256 </exclusions>
257 </dependency>
258
Muthuramalingam, Brinda Santh(bs2796)ee467d72018-08-23 15:54:30 +0000259
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000260 <!-- Application Module Dependencies -->
261 <dependency>
262 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
Steve Alphonse Siania5f9b6f2019-01-21 11:55:48 -0500263 <artifactId>application</artifactId>
264 <version>${project.version}</version>
265 </dependency>
266 <dependency>
267 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000268 <artifactId>db-lib</artifactId>
269 <version>${project.version}</version>
270 </dependency>
271 <dependency>
272 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
273 <artifactId>rest-lib</artifactId>
274 <version>${project.version}</version>
275 </dependency>
276 <dependency>
277 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
278 <artifactId>core</artifactId>
279 <version>${project.version}</version>
280 </dependency>
281 <dependency>
282 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000283 <artifactId>execution-service</artifactId>
284 <version>${project.version}</version>
285 </dependency>
286 <dependency>
287 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
Muthuramalingam, Brinda Santh(bs2796)cbbe0ea2018-11-13 16:47:33 -0500288 <artifactId>workflow-service</artifactId>
289 <version>${project.version}</version>
290 </dependency>
291 <dependency>
292 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000293 <artifactId>resource-api</artifactId>
294 <version>${project.version}</version>
295 </dependency>
296 <dependency>
297 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
298 <artifactId>selfservice-api</artifactId>
299 <version>${project.version}</version>
300 </dependency>
301
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500302 <!-- Functions -->
303 <dependency>
304 <groupId>org.onap.ccsdk.apps.blueprintsprocessor.functions</groupId>
305 <artifactId>resource-resolution</artifactId>
306 <version>${project.version}</version>
307 </dependency>
Muthuramalingam, Brinda Santh(bs2796)88c3ca22018-12-04 20:53:22 -0500308 <dependency>
309 <groupId>org.onap.ccsdk.apps.blueprintsprocessor.functions</groupId>
310 <artifactId>python-executor</artifactId>
311 <version>${project.version}</version>
312 </dependency>
313 <dependency>
314 <groupId>org.onap.ccsdk.apps.blueprintsprocessor.functions</groupId>
315 <artifactId>netconf-executor</artifactId>
316 <version>${project.version}</version>
317 </dependency>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500318
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000319 <!-- Application Component Dependency -->
320 <dependency>
Muthuramalingam, Brinda Santh(bs2796)ee467d72018-08-23 15:54:30 +0000321 <groupId>org.onap.ccsdk.apps.controllerblueprints</groupId>
322 <artifactId>resource-dict</artifactId>
Muthuramalingam, Brinda Santh(bs2796)c6ffd3c2018-11-10 11:54:05 -0500323 <version>${project.version}</version>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000324 </dependency>
Steve Alphonse Siania5f9b6f2019-01-21 11:55:48 -0500325 <dependency>
326 <groupId>org.onap.ccsdk.apps.controllerblueprints</groupId>
Muthuramalingam, Brinda Santh2ecd4e72019-02-07 14:51:50 -0500327 <artifactId>blueprint-core</artifactId>
Steve Alphonse Siania5f9b6f2019-01-21 11:55:48 -0500328 <version>${project.version}</version>
329 </dependency>
Muthuramalingam, Brinda Santhfd14fc12019-01-30 15:52:30 -0500330 <dependency>
331 <groupId>org.onap.ccsdk.apps.controllerblueprints</groupId>
332 <artifactId>blueprint-scripts</artifactId>
333 <version>${project.version}</version>
334 </dependency>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000335
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000336 <!-- Database -->
337 <dependency>
338 <groupId>com.h2database</groupId>
339 <artifactId>h2</artifactId>
340 <version>${h2database.version}</version>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500341 <scope>test</scope>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000342 </dependency>
343 <!-- Test Dependency -->
344 <dependency>
Brinda Santhafbc1522018-08-23 23:34:05 -0400345 <groupId>org.powermock</groupId>
346 <artifactId>powermock-api-mockito2</artifactId>
Muthuramalingam, Brinda Santh(bs2796)c6ffd3c2018-11-10 11:54:05 -0500347 <version>${powermock.version}</version>
Brinda Santhafbc1522018-08-23 23:34:05 -0400348 <scope>test</scope>
349 </dependency>
350 <dependency>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000351 <groupId>org.jetbrains.kotlin</groupId>
Muthuramalingam, Brinda Santh(bs2796)c6ffd3c2018-11-10 11:54:05 -0500352 <artifactId>kotlin-test-junit</artifactId>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000353 <version>${kotlin.version}</version>
354 <scope>test</scope>
355 </dependency>
Muthuramalingam, Brinda Santh(bs2796)43aeebf2018-12-01 19:54:07 -0500356 <dependency>
357 <groupId>io.grpc</groupId>
358 <artifactId>grpc-testing</artifactId>
359 <version>${grpc.version}</version>
360 <scope>test</scope>
361 </dependency>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000362 </dependencies>
363 </dependencyManagement>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000364
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500365 <dependencies>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000366 <dependency>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500367 <groupId>com.att.eelf</groupId>
368 <artifactId>eelf-core</artifactId>
369 </dependency>
370 <dependency>
371 <groupId>org.onap.logging-analytics</groupId>
372 <artifactId>logging-slf4j</artifactId>
373 </dependency>
374 <dependency>
375 <groupId>org.apache.commons</groupId>
376 <artifactId>commons-lang3</artifactId>
377 </dependency>
378 <dependency>
379 <groupId>commons-collections</groupId>
380 <artifactId>commons-collections</artifactId>
381 </dependency>
382 <dependency>
383 <groupId>commons-io</groupId>
384 <artifactId>commons-io</artifactId>
385 </dependency>
386 <dependency>
Muthuramalingam, Brinda Santh3d281342019-01-11 11:30:40 -0500387 <groupId>org.apache.commons</groupId>
388 <artifactId>commons-compress</artifactId>
389 </dependency>
390 <dependency>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500391 <groupId>com.jayway.jsonpath</groupId>
392 <artifactId>json-path</artifactId>
393 </dependency>
394 <dependency>
Muthuramalingam, Brinda Santh3d281342019-01-11 11:30:40 -0500395 <groupId>com.google.guava</groupId>
396 <artifactId>guava</artifactId>
397 </dependency>
398 <dependency>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500399 <groupId>io.springfox</groupId>
400 <artifactId>springfox-swagger2</artifactId>
401 </dependency>
402 <dependency>
403 <groupId>io.springfox</groupId>
404 <artifactId>springfox-swagger-ui</artifactId>
405 </dependency>
406 <dependency>
407 <groupId>org.jetbrains.kotlin</groupId>
408 <artifactId>kotlin-stdlib</artifactId>
409 </dependency>
410 <dependency>
411 <groupId>org.jetbrains.kotlin</groupId>
Muthuramalingam, Brinda Santh3d281342019-01-11 11:30:40 -0500412 <artifactId>kotlin-script-util</artifactId>
413 </dependency>
414 <dependency>
415 <groupId>org.jetbrains.kotlin</groupId>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500416 <artifactId>kotlin-stdlib-jdk8</artifactId>
417 </dependency>
418 <dependency>
Muthuramalingam, Brinda Santh3d281342019-01-11 11:30:40 -0500419 <groupId>org.jetbrains.kotlinx</groupId>
420 <artifactId>kotlinx-coroutines-core</artifactId>
421 </dependency>
422 <dependency>
423 <groupId>org.jetbrains.kotlinx</groupId>
424 <artifactId>kotlinx-coroutines-reactor</artifactId>
425 </dependency>
426 <dependency>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500427 <groupId>com.fasterxml.jackson.module</groupId>
428 <artifactId>jackson-module-kotlin</artifactId>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000429 </dependency>
Muthuramalingam, Brinda Santh3d281342019-01-11 11:30:40 -0500430 <dependency>
431 <groupId>org.jetbrains.kotlin</groupId>
Alexis de Talhouët4a65d472019-01-17 16:47:46 -0500432 <artifactId>kotlin-compiler-embeddable</artifactId>
433 </dependency>
434 <dependency>
435 <groupId>org.jetbrains.kotlin</groupId>
Muthuramalingam, Brinda Santh3d281342019-01-11 11:30:40 -0500436 <artifactId>kotlin-scripting-jvm-host</artifactId>
Alexis de Talhouët4a65d472019-01-17 16:47:46 -0500437 <!--Use kotlin-compiler-embeddable as koltin-compiler wrap-->
438 <!--guava dependency creating classpath issues at runtime-->
439 <exclusions>
440 <exclusion>
441 <groupId>org.jetbrains.kotlin</groupId>
442 <artifactId>kotlin-compiler</artifactId>
443 </exclusion>
444 </exclusions>
Muthuramalingam, Brinda Santh3d281342019-01-11 11:30:40 -0500445 </dependency>
Muthuramalingam, Brinda Santh(bs2796)aa927022018-11-24 14:25:26 -0500446 <!-- GRPC Dependencies -->
447 <dependency>
448 <groupId>io.grpc</groupId>
449 <artifactId>grpc-netty</artifactId>
450 </dependency>
451 <dependency>
452 <groupId>io.grpc</groupId>
453 <artifactId>grpc-protobuf</artifactId>
454 </dependency>
455 <dependency>
456 <groupId>io.grpc</groupId>
457 <artifactId>grpc-stub</artifactId>
458 </dependency>
Muthuramalingam, Brinda Santh(bs2796)3b4a7eb2018-12-07 16:37:03 -0500459 <dependency>
460 <groupId>com.google.protobuf</groupId>
461 <artifactId>protobuf-java-util</artifactId>
462 </dependency>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000463 </dependencies>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500464
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000465 <build>
466 <plugins>
467 <plugin>
468 <groupId>org.jetbrains.kotlin</groupId>
469 <artifactId>kotlin-maven-plugin</artifactId>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500470 <version>${kotlin.maven.version}</version>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000471 <executions>
472 <execution>
473 <id>compile</id>
Muthuramalingam, Brinda Santh(bs2796)cbbe0ea2018-11-13 16:47:33 -0500474 <goals>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000475 <goal>compile</goal>
476 </goals>
477 <configuration>
478 <sourceDirs>
479 <sourceDir>${project.basedir}/src/main/kotlin</sourceDir>
480 <sourceDir>${project.basedir}/src/main/java</sourceDir>
481 </sourceDirs>
482 </configuration>
483 </execution>
484 <execution>
485 <id>test-compile</id>
486 <goals>
487 <goal>test-compile</goal>
488 </goals>
489 <configuration>
490 <sourceDirs>
491 <sourceDir>${project.basedir}/src/test/kotlin</sourceDir>
492 <sourceDir>${project.basedir}/src/test/java</sourceDir>
493 </sourceDirs>
494 </configuration>
495 </execution>
496 </executions>
497 </plugin>
498 <plugin>
499 <groupId>org.apache.maven.plugins</groupId>
500 <artifactId>maven-compiler-plugin</artifactId>
501 <version>3.5.1</version>
502 <configuration>
503 <source>${maven.compiler.source}</source>
504 <target>${maven.compiler.target}</target>
505 </configuration>
506 </plugin>
507 </plugins>
508 </build>
509</project>