blob: 472b466b7cf5818974110a9433c206c0e2f011cd [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"
21 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>
327 <artifactId>core</artifactId>
328 <version>${project.version}</version>
329 </dependency>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000330
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000331 <!-- Database -->
332 <dependency>
333 <groupId>com.h2database</groupId>
334 <artifactId>h2</artifactId>
335 <version>${h2database.version}</version>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500336 <scope>test</scope>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000337 </dependency>
338 <!-- Test Dependency -->
339 <dependency>
Brinda Santhafbc1522018-08-23 23:34:05 -0400340 <groupId>org.powermock</groupId>
341 <artifactId>powermock-api-mockito2</artifactId>
Muthuramalingam, Brinda Santh(bs2796)c6ffd3c2018-11-10 11:54:05 -0500342 <version>${powermock.version}</version>
Brinda Santhafbc1522018-08-23 23:34:05 -0400343 <scope>test</scope>
344 </dependency>
345 <dependency>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000346 <groupId>org.jetbrains.kotlin</groupId>
Muthuramalingam, Brinda Santh(bs2796)c6ffd3c2018-11-10 11:54:05 -0500347 <artifactId>kotlin-test-junit</artifactId>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000348 <version>${kotlin.version}</version>
349 <scope>test</scope>
350 </dependency>
Muthuramalingam, Brinda Santh(bs2796)43aeebf2018-12-01 19:54:07 -0500351 <dependency>
352 <groupId>io.grpc</groupId>
353 <artifactId>grpc-testing</artifactId>
354 <version>${grpc.version}</version>
355 <scope>test</scope>
356 </dependency>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000357 </dependencies>
358 </dependencyManagement>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000359
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500360 <dependencies>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000361 <dependency>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500362 <groupId>com.att.eelf</groupId>
363 <artifactId>eelf-core</artifactId>
364 </dependency>
365 <dependency>
366 <groupId>org.onap.logging-analytics</groupId>
367 <artifactId>logging-slf4j</artifactId>
368 </dependency>
369 <dependency>
370 <groupId>org.apache.commons</groupId>
371 <artifactId>commons-lang3</artifactId>
372 </dependency>
373 <dependency>
374 <groupId>commons-collections</groupId>
375 <artifactId>commons-collections</artifactId>
376 </dependency>
377 <dependency>
378 <groupId>commons-io</groupId>
379 <artifactId>commons-io</artifactId>
380 </dependency>
381 <dependency>
Muthuramalingam, Brinda Santh3d281342019-01-11 11:30:40 -0500382 <groupId>org.apache.commons</groupId>
383 <artifactId>commons-compress</artifactId>
384 </dependency>
385 <dependency>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500386 <groupId>com.jayway.jsonpath</groupId>
387 <artifactId>json-path</artifactId>
388 </dependency>
389 <dependency>
Muthuramalingam, Brinda Santh3d281342019-01-11 11:30:40 -0500390 <groupId>com.google.guava</groupId>
391 <artifactId>guava</artifactId>
392 </dependency>
393 <dependency>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500394 <groupId>io.springfox</groupId>
395 <artifactId>springfox-swagger2</artifactId>
396 </dependency>
397 <dependency>
398 <groupId>io.springfox</groupId>
399 <artifactId>springfox-swagger-ui</artifactId>
400 </dependency>
401 <dependency>
402 <groupId>org.jetbrains.kotlin</groupId>
403 <artifactId>kotlin-stdlib</artifactId>
404 </dependency>
405 <dependency>
406 <groupId>org.jetbrains.kotlin</groupId>
Muthuramalingam, Brinda Santh3d281342019-01-11 11:30:40 -0500407 <artifactId>kotlin-script-util</artifactId>
408 </dependency>
409 <dependency>
410 <groupId>org.jetbrains.kotlin</groupId>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500411 <artifactId>kotlin-stdlib-jdk8</artifactId>
412 </dependency>
413 <dependency>
Muthuramalingam, Brinda Santh3d281342019-01-11 11:30:40 -0500414 <groupId>org.jetbrains.kotlinx</groupId>
415 <artifactId>kotlinx-coroutines-core</artifactId>
416 </dependency>
417 <dependency>
418 <groupId>org.jetbrains.kotlinx</groupId>
419 <artifactId>kotlinx-coroutines-reactor</artifactId>
420 </dependency>
421 <dependency>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500422 <groupId>com.fasterxml.jackson.module</groupId>
423 <artifactId>jackson-module-kotlin</artifactId>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000424 </dependency>
Muthuramalingam, Brinda Santh3d281342019-01-11 11:30:40 -0500425 <dependency>
426 <groupId>org.jetbrains.kotlin</groupId>
Alexis de Talhouët4a65d472019-01-17 16:47:46 -0500427 <artifactId>kotlin-compiler-embeddable</artifactId>
428 </dependency>
429 <dependency>
430 <groupId>org.jetbrains.kotlin</groupId>
Muthuramalingam, Brinda Santh3d281342019-01-11 11:30:40 -0500431 <artifactId>kotlin-scripting-jvm-host</artifactId>
Alexis de Talhouët4a65d472019-01-17 16:47:46 -0500432 <!--Use kotlin-compiler-embeddable as koltin-compiler wrap-->
433 <!--guava dependency creating classpath issues at runtime-->
434 <exclusions>
435 <exclusion>
436 <groupId>org.jetbrains.kotlin</groupId>
437 <artifactId>kotlin-compiler</artifactId>
438 </exclusion>
439 </exclusions>
Muthuramalingam, Brinda Santh3d281342019-01-11 11:30:40 -0500440 </dependency>
Muthuramalingam, Brinda Santh(bs2796)aa927022018-11-24 14:25:26 -0500441 <!-- GRPC Dependencies -->
442 <dependency>
443 <groupId>io.grpc</groupId>
444 <artifactId>grpc-netty</artifactId>
445 </dependency>
446 <dependency>
447 <groupId>io.grpc</groupId>
448 <artifactId>grpc-protobuf</artifactId>
449 </dependency>
450 <dependency>
451 <groupId>io.grpc</groupId>
452 <artifactId>grpc-stub</artifactId>
453 </dependency>
Muthuramalingam, Brinda Santh(bs2796)3b4a7eb2018-12-07 16:37:03 -0500454 <dependency>
455 <groupId>com.google.protobuf</groupId>
456 <artifactId>protobuf-java-util</artifactId>
457 </dependency>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000458 </dependencies>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500459
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000460 <build>
461 <plugins>
462 <plugin>
463 <groupId>org.jetbrains.kotlin</groupId>
464 <artifactId>kotlin-maven-plugin</artifactId>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500465 <version>${kotlin.maven.version}</version>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000466 <executions>
467 <execution>
468 <id>compile</id>
Muthuramalingam, Brinda Santh(bs2796)cbbe0ea2018-11-13 16:47:33 -0500469 <goals>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000470 <goal>compile</goal>
471 </goals>
472 <configuration>
473 <sourceDirs>
474 <sourceDir>${project.basedir}/src/main/kotlin</sourceDir>
475 <sourceDir>${project.basedir}/src/main/java</sourceDir>
476 </sourceDirs>
477 </configuration>
478 </execution>
479 <execution>
480 <id>test-compile</id>
481 <goals>
482 <goal>test-compile</goal>
483 </goals>
484 <configuration>
485 <sourceDirs>
486 <sourceDir>${project.basedir}/src/test/kotlin</sourceDir>
487 <sourceDir>${project.basedir}/src/test/java</sourceDir>
488 </sourceDirs>
489 </configuration>
490 </execution>
491 </executions>
492 </plugin>
493 <plugin>
494 <groupId>org.apache.maven.plugins</groupId>
495 <artifactId>maven-compiler-plugin</artifactId>
496 <version>3.5.1</version>
497 <configuration>
498 <source>${maven.compiler.source}</source>
499 <target>${maven.compiler.target}</target>
500 </configuration>
501 </plugin>
502 </plugins>
503 </build>
504</project>