blob: e8b8628c509482775253fe79f2d7292763019e94 [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 Santh(bs2796)43aeebf2018-12-01 19:54:07 -050034 <spring.boot.version>2.1.1.RELEASE</spring.boot.version>
35 <spring.version>5.1.3.RELEASE</spring.version>
Muthuramalingam, Brinda Santh3d281342019-01-11 11:30:40 -050036 <kotlin.version>1.3.11</kotlin.version>
37 <kotlin.maven.version>1.3.11</kotlin.maven.version>
38 <kotlin.couroutines.version>1.1.0</kotlin.couroutines.version>
39 <grpc.version>1.17.1</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>
130 <artifactId>kotlin-scripting-jvm-host</artifactId>
131 <version>${kotlin.version}</version>
132 </dependency>
133 <dependency>
134 <groupId>org.jetbrains.kotlin</groupId>
135 <artifactId>kotlin-compiler-embeddable</artifactId>
136 <version>${kotlin.version}</version>
137 <scope>runtime</scope>
138 </dependency>
139 <dependency>
140 <groupId>org.jetbrains.kotlin</groupId>
141 <artifactId>kotlin-script-util</artifactId>
142 <version>${kotlin.version}</version>
143 </dependency>
144 <dependency>
145 <groupId>org.jetbrains.kotlin</groupId>
146 <artifactId>kotlin-script-runtime</artifactId>
147 <version>${kotlin.version}</version>
148 </dependency>
149 <dependency>
Muthuramalingam, Brinda Santh(bs2796)aa927022018-11-24 14:25:26 -0500150 <groupId>org.jetbrains.kotlinx</groupId>
151 <artifactId>kotlinx-coroutines-core</artifactId>
Muthuramalingam, Brinda Santh(bs2796)c6ffd3c2018-11-10 11:54:05 -0500152 <version>${kotlin.couroutines.version}</version>
Muthuramalingam, Brinda Santh(bs2796)ee467d72018-08-23 15:54:30 +0000153 </dependency>
154 <dependency>
Muthuramalingam, Brinda Santh(bs2796)cf6cf512018-12-20 11:16:31 -0500155 <groupId>org.jetbrains.kotlinx</groupId>
156 <artifactId>kotlinx-coroutines-reactor</artifactId>
157 <version>${kotlin.couroutines.version}</version>
158 </dependency>
159 <dependency>
Muthuramalingam, Brinda Santh(bs2796)ee467d72018-08-23 15:54:30 +0000160 <groupId>org.jetbrains.kotlin</groupId>
161 <artifactId>kotlin-reflect</artifactId>
162 <version>${kotlin.version}</version>
163 </dependency>
Muthuramalingam, Brinda Santh(bs2796)c6ffd3c2018-11-10 11:54:05 -0500164 <dependency>
165 <groupId>org.jetbrains.kotlin</groupId>
166 <artifactId>kotlin-stdlib-jdk8</artifactId>
167 <version>${kotlin.version}</version>
168 </dependency>
169 <dependency>
170 <groupId>org.jetbrains.kotlin</groupId>
171 <artifactId>kotlin-stdlib-jdk7</artifactId>
172 <version>${kotlin.version}</version>
173 </dependency>
174
Muthuramalingam, Brinda Santh(bs2796)aa927022018-11-24 14:25:26 -0500175 <!-- GRPC Dependencies -->
176 <dependency>
177 <groupId>io.grpc</groupId>
Muthuramalingam, Brinda Santh(bs2796)43aeebf2018-12-01 19:54:07 -0500178 <artifactId>grpc-core</artifactId>
179 <version>${grpc.version}</version>
180 </dependency>
181 <dependency>
182 <groupId>io.grpc</groupId>
Muthuramalingam, Brinda Santh(bs2796)aa927022018-11-24 14:25:26 -0500183 <artifactId>grpc-netty</artifactId>
184 <version>${grpc.version}</version>
185 </dependency>
186 <dependency>
187 <groupId>io.grpc</groupId>
188 <artifactId>grpc-protobuf</artifactId>
189 <version>${grpc.version}</version>
190 </dependency>
191 <dependency>
192 <groupId>io.grpc</groupId>
193 <artifactId>grpc-stub</artifactId>
194 <version>${grpc.version}</version>
195 </dependency>
Muthuramalingam, Brinda Santh(bs2796)3b4a7eb2018-12-07 16:37:03 -0500196 <dependency>
197 <groupId>com.google.protobuf</groupId>
198 <artifactId>protobuf-java-util</artifactId>
199 <version>${protobuff.java.utils.version}</version>
200 </dependency>
Muthuramalingam, Brinda Santh(bs2796)aa927022018-11-24 14:25:26 -0500201
Muthuramalingam, Brinda Santh(bs2796)cbbe0ea2018-11-13 16:47:33 -0500202 <!-- SLI Version -->
203 <dependency>
204 <groupId>org.onap.ccsdk.sli.core</groupId>
205 <artifactId>sli-provider</artifactId>
206 <version>${sli.version}</version>
207 <exclusions>
208 <exclusion>
209 <groupId>commons-lang</groupId>
210 <artifactId>commons-lang</artifactId>
211 </exclusion>
212 <exclusion>
213 <groupId>org.apache.commons</groupId>
214 <artifactId>*</artifactId>
215 </exclusion>
216 <exclusion>
217 <groupId>org.slf4j</groupId>
218 <artifactId>*</artifactId>
219 </exclusion>
220 <exclusion>
221 <groupId>org.opendaylight.mdsal.model</groupId>
222 <artifactId>*</artifactId>
223 </exclusion>
Muthuramalingam, Brinda Santh(bs2796)66439ec2018-12-17 11:15:28 -0500224 <exclusion>
225 <groupId>org.opendaylight.controller</groupId>
226 <artifactId>*</artifactId>
227 </exclusion>
Muthuramalingam, Brinda Santh(bs2796)cbbe0ea2018-11-13 16:47:33 -0500228 <exclusion>
229 <groupId>org.apache.tomcat</groupId>
230 <artifactId>*</artifactId>
231 </exclusion>
232 <exclusion>
233 <groupId>org.apache.karaf.shell</groupId>
234 <artifactId>*</artifactId>
235 </exclusion>
236 <exclusion>
237 <groupId>org.mariadb.jdbc</groupId>
238 <artifactId>*</artifactId>
239 </exclusion>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500240 <exclusion>
241 <groupId>org.powermock</groupId>
242 <artifactId>*</artifactId>
243 </exclusion>
Muthuramalingam, Brinda Santh(bs2796)cbbe0ea2018-11-13 16:47:33 -0500244 </exclusions>
245 </dependency>
246
Muthuramalingam, Brinda Santh(bs2796)ee467d72018-08-23 15:54:30 +0000247
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000248 <!-- Application Module Dependencies -->
249 <dependency>
250 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
Steve Alphonse Siania5f9b6f2019-01-21 11:55:48 -0500251 <artifactId>application</artifactId>
252 <version>${project.version}</version>
253 </dependency>
254 <dependency>
255 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000256 <artifactId>db-lib</artifactId>
257 <version>${project.version}</version>
258 </dependency>
259 <dependency>
260 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
261 <artifactId>rest-lib</artifactId>
262 <version>${project.version}</version>
263 </dependency>
264 <dependency>
265 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
266 <artifactId>core</artifactId>
267 <version>${project.version}</version>
268 </dependency>
269 <dependency>
270 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000271 <artifactId>execution-service</artifactId>
272 <version>${project.version}</version>
273 </dependency>
274 <dependency>
275 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
Muthuramalingam, Brinda Santh(bs2796)cbbe0ea2018-11-13 16:47:33 -0500276 <artifactId>workflow-service</artifactId>
277 <version>${project.version}</version>
278 </dependency>
279 <dependency>
280 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000281 <artifactId>resource-api</artifactId>
282 <version>${project.version}</version>
283 </dependency>
284 <dependency>
285 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
286 <artifactId>selfservice-api</artifactId>
287 <version>${project.version}</version>
288 </dependency>
289
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500290 <!-- Functions -->
291 <dependency>
292 <groupId>org.onap.ccsdk.apps.blueprintsprocessor.functions</groupId>
293 <artifactId>resource-resolution</artifactId>
294 <version>${project.version}</version>
295 </dependency>
Muthuramalingam, Brinda Santh(bs2796)88c3ca22018-12-04 20:53:22 -0500296 <dependency>
297 <groupId>org.onap.ccsdk.apps.blueprintsprocessor.functions</groupId>
298 <artifactId>python-executor</artifactId>
299 <version>${project.version}</version>
300 </dependency>
301 <dependency>
302 <groupId>org.onap.ccsdk.apps.blueprintsprocessor.functions</groupId>
303 <artifactId>netconf-executor</artifactId>
304 <version>${project.version}</version>
305 </dependency>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500306
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000307 <!-- Application Component Dependency -->
308 <dependency>
Muthuramalingam, Brinda Santh(bs2796)ee467d72018-08-23 15:54:30 +0000309 <groupId>org.onap.ccsdk.apps.controllerblueprints</groupId>
310 <artifactId>resource-dict</artifactId>
Muthuramalingam, Brinda Santh(bs2796)c6ffd3c2018-11-10 11:54:05 -0500311 <version>${project.version}</version>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000312 </dependency>
Steve Alphonse Siania5f9b6f2019-01-21 11:55:48 -0500313 <dependency>
314 <groupId>org.onap.ccsdk.apps.controllerblueprints</groupId>
315 <artifactId>core</artifactId>
316 <version>${project.version}</version>
317 </dependency>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000318
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000319 <!-- Database -->
320 <dependency>
321 <groupId>com.h2database</groupId>
322 <artifactId>h2</artifactId>
323 <version>${h2database.version}</version>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500324 <scope>test</scope>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000325 </dependency>
326 <!-- Test Dependency -->
327 <dependency>
Brinda Santhafbc1522018-08-23 23:34:05 -0400328 <groupId>org.powermock</groupId>
329 <artifactId>powermock-api-mockito2</artifactId>
Muthuramalingam, Brinda Santh(bs2796)c6ffd3c2018-11-10 11:54:05 -0500330 <version>${powermock.version}</version>
Brinda Santhafbc1522018-08-23 23:34:05 -0400331 <scope>test</scope>
332 </dependency>
333 <dependency>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000334 <groupId>org.jetbrains.kotlin</groupId>
Muthuramalingam, Brinda Santh(bs2796)c6ffd3c2018-11-10 11:54:05 -0500335 <artifactId>kotlin-test-junit</artifactId>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000336 <version>${kotlin.version}</version>
337 <scope>test</scope>
338 </dependency>
Muthuramalingam, Brinda Santh(bs2796)43aeebf2018-12-01 19:54:07 -0500339 <dependency>
340 <groupId>io.grpc</groupId>
341 <artifactId>grpc-testing</artifactId>
342 <version>${grpc.version}</version>
343 <scope>test</scope>
344 </dependency>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000345 </dependencies>
346 </dependencyManagement>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000347
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500348 <dependencies>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000349 <dependency>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500350 <groupId>com.att.eelf</groupId>
351 <artifactId>eelf-core</artifactId>
352 </dependency>
353 <dependency>
354 <groupId>org.onap.logging-analytics</groupId>
355 <artifactId>logging-slf4j</artifactId>
356 </dependency>
357 <dependency>
358 <groupId>org.apache.commons</groupId>
359 <artifactId>commons-lang3</artifactId>
360 </dependency>
361 <dependency>
362 <groupId>commons-collections</groupId>
363 <artifactId>commons-collections</artifactId>
364 </dependency>
365 <dependency>
366 <groupId>commons-io</groupId>
367 <artifactId>commons-io</artifactId>
368 </dependency>
369 <dependency>
Muthuramalingam, Brinda Santh3d281342019-01-11 11:30:40 -0500370 <groupId>org.apache.commons</groupId>
371 <artifactId>commons-compress</artifactId>
372 </dependency>
373 <dependency>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500374 <groupId>com.jayway.jsonpath</groupId>
375 <artifactId>json-path</artifactId>
376 </dependency>
377 <dependency>
Muthuramalingam, Brinda Santh3d281342019-01-11 11:30:40 -0500378 <groupId>com.google.guava</groupId>
379 <artifactId>guava</artifactId>
380 </dependency>
381 <dependency>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500382 <groupId>io.springfox</groupId>
383 <artifactId>springfox-swagger2</artifactId>
384 </dependency>
385 <dependency>
386 <groupId>io.springfox</groupId>
387 <artifactId>springfox-swagger-ui</artifactId>
388 </dependency>
389 <dependency>
390 <groupId>org.jetbrains.kotlin</groupId>
391 <artifactId>kotlin-stdlib</artifactId>
392 </dependency>
393 <dependency>
394 <groupId>org.jetbrains.kotlin</groupId>
Muthuramalingam, Brinda Santh3d281342019-01-11 11:30:40 -0500395 <artifactId>kotlin-script-util</artifactId>
396 </dependency>
397 <dependency>
398 <groupId>org.jetbrains.kotlin</groupId>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500399 <artifactId>kotlin-stdlib-jdk8</artifactId>
400 </dependency>
401 <dependency>
Muthuramalingam, Brinda Santh3d281342019-01-11 11:30:40 -0500402 <groupId>org.jetbrains.kotlinx</groupId>
403 <artifactId>kotlinx-coroutines-core</artifactId>
404 </dependency>
405 <dependency>
406 <groupId>org.jetbrains.kotlinx</groupId>
407 <artifactId>kotlinx-coroutines-reactor</artifactId>
408 </dependency>
409 <dependency>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500410 <groupId>com.fasterxml.jackson.module</groupId>
411 <artifactId>jackson-module-kotlin</artifactId>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000412 </dependency>
Muthuramalingam, Brinda Santh3d281342019-01-11 11:30:40 -0500413 <dependency>
414 <groupId>org.jetbrains.kotlin</groupId>
Alexis de Talhouët4a65d472019-01-17 16:47:46 -0500415 <artifactId>kotlin-compiler-embeddable</artifactId>
416 </dependency>
417 <dependency>
418 <groupId>org.jetbrains.kotlin</groupId>
Muthuramalingam, Brinda Santh3d281342019-01-11 11:30:40 -0500419 <artifactId>kotlin-scripting-jvm-host</artifactId>
Alexis de Talhouët4a65d472019-01-17 16:47:46 -0500420 <!--Use kotlin-compiler-embeddable as koltin-compiler wrap-->
421 <!--guava dependency creating classpath issues at runtime-->
422 <exclusions>
423 <exclusion>
424 <groupId>org.jetbrains.kotlin</groupId>
425 <artifactId>kotlin-compiler</artifactId>
426 </exclusion>
427 </exclusions>
Muthuramalingam, Brinda Santh3d281342019-01-11 11:30:40 -0500428 </dependency>
Muthuramalingam, Brinda Santh(bs2796)aa927022018-11-24 14:25:26 -0500429 <!-- GRPC Dependencies -->
430 <dependency>
431 <groupId>io.grpc</groupId>
432 <artifactId>grpc-netty</artifactId>
433 </dependency>
434 <dependency>
435 <groupId>io.grpc</groupId>
436 <artifactId>grpc-protobuf</artifactId>
437 </dependency>
438 <dependency>
439 <groupId>io.grpc</groupId>
440 <artifactId>grpc-stub</artifactId>
441 </dependency>
Muthuramalingam, Brinda Santh(bs2796)3b4a7eb2018-12-07 16:37:03 -0500442 <dependency>
443 <groupId>com.google.protobuf</groupId>
444 <artifactId>protobuf-java-util</artifactId>
445 </dependency>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000446 </dependencies>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500447
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000448 <build>
449 <plugins>
450 <plugin>
451 <groupId>org.jetbrains.kotlin</groupId>
452 <artifactId>kotlin-maven-plugin</artifactId>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500453 <version>${kotlin.maven.version}</version>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000454 <executions>
455 <execution>
456 <id>compile</id>
Muthuramalingam, Brinda Santh(bs2796)cbbe0ea2018-11-13 16:47:33 -0500457 <goals>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000458 <goal>compile</goal>
459 </goals>
460 <configuration>
461 <sourceDirs>
462 <sourceDir>${project.basedir}/src/main/kotlin</sourceDir>
463 <sourceDir>${project.basedir}/src/main/java</sourceDir>
464 </sourceDirs>
465 </configuration>
466 </execution>
467 <execution>
468 <id>test-compile</id>
469 <goals>
470 <goal>test-compile</goal>
471 </goals>
472 <configuration>
473 <sourceDirs>
474 <sourceDir>${project.basedir}/src/test/kotlin</sourceDir>
475 <sourceDir>${project.basedir}/src/test/java</sourceDir>
476 </sourceDirs>
477 </configuration>
478 </execution>
479 </executions>
480 </plugin>
481 <plugin>
482 <groupId>org.apache.maven.plugins</groupId>
483 <artifactId>maven-compiler-plugin</artifactId>
484 <version>3.5.1</version>
485 <configuration>
486 <source>${maven.compiler.source}</source>
487 <target>${maven.compiler.target}</target>
488 </configuration>
489 </plugin>
490 </plugins>
491 </build>
492</project>