blob: 369b84b4eecf1b83d8926f1cb8ee49a0adbdfdb8 [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.
6 ~
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +00007 ~ Licensed under the Apache License, Version 2.0 (the "License");
8 ~ you may not use this file except in compliance with the License.
9 ~ You may obtain a copy of the License at
10 ~
11 ~ http://www.apache.org/licenses/LICENSE-2.0
12 ~
13 ~ Unless required by applicable law or agreed to in writing, software
14 ~ distributed under the License is distributed on an "AS IS" BASIS,
15 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 ~ See the License for the specific language governing permissions and
17 ~ limitations under the License.
18 -->
Muthuramalingam, Brinda Santh(bs2796)cbbe0ea2018-11-13 16:47:33 -050019<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20 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 +000021 <modelVersion>4.0.0</modelVersion>
Muthuramalingam, Brinda Santh(bs2796)ee467d72018-08-23 15:54:30 +000022 <parent>
23 <groupId>org.onap.ccsdk.apps</groupId>
24 <artifactId>blueprintsprocessor</artifactId>
Timoney, Dan (dt5972)00687832018-10-25 10:34:51 -040025 <version>0.4.0-SNAPSHOT</version>
Muthuramalingam, Brinda Santh(bs2796)ee467d72018-08-23 15:54:30 +000026 </parent>
27 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +000028 <artifactId>parent</artifactId>
29 <packaging>pom</packaging>
30 <name>Blueprints Processor Parent</name>
31 <description>Blueprints Processor Parent</description>
32 <properties>
Muthuramalingam, Brinda Santh(bs2796)43aeebf2018-12-01 19:54:07 -050033 <spring.boot.version>2.1.1.RELEASE</spring.boot.version>
34 <spring.version>5.1.3.RELEASE</spring.version>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -050035 <kotlin.version>1.3.10</kotlin.version>
Muthuramalingam, Brinda Santh(bs2796)aa927022018-11-24 14:25:26 -050036 <kotlin.maven.version>1.3.10</kotlin.maven.version>
Muthuramalingam, Brinda Santh(bs2796)c6ffd3c2018-11-10 11:54:05 -050037 <kotlin.couroutines.version>1.0.1</kotlin.couroutines.version>
Muthuramalingam, Brinda Santh(bs2796)aa927022018-11-24 14:25:26 -050038 <grpc.version>1.16.1</grpc.version>
Muthuramalingam, Brinda Santh(bs2796)3b4a7eb2018-12-07 16:37:03 -050039 <protobuff.java.utils.version>3.6.1</protobuff.java.utils.version>
Muthuramalingam, Brinda Santh(bs2796)ee467d72018-08-23 15:54:30 +000040 <eelf.version>1.0.0</eelf.version>
Muthuramalingam, Brinda Santh(bs2796)66439ec2018-12-17 11:15:28 -050041 <sli.version>0.4.0-SNAPSHOT</sli.version>
Muthuramalingam, Brinda Santh(bs2796)c6ffd3c2018-11-10 11:54:05 -050042 <guava.version>26.0-jre</guava.version>
Muthuramalingam, Brinda Santh(bs2796)d2ec19b2018-11-19 12:48:31 -050043 <jython.version>2.7.1</jython.version>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +000044 <springfox.swagger2.version>2.9.2</springfox.swagger2.version>
45 <h2database.version>1.4.197</h2database.version>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -050046 <onap.logger.slf4j>1.2.2</onap.logger.slf4j>
Muthuramalingam, Brinda Santh(bs2796)c6ffd3c2018-11-10 11:54:05 -050047 <powermock.version>1.7.4</powermock.version>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +000048 </properties>
49 <dependencyManagement>
50 <dependencies>
Muthuramalingam, Brinda Santh(bs2796)ee467d72018-08-23 15:54:30 +000051 <!-- Spring Boot -->
52 <dependency>
53 <groupId>org.springframework.boot</groupId>
54 <artifactId>spring-boot-starter-parent</artifactId>
55 <version>${spring.boot.version}</version>
56 <type>pom</type>
57 <scope>import</scope>
58 </dependency>
59
60 <!-- Logging Dependencies -->
61 <dependency>
62 <groupId>com.att.eelf</groupId>
63 <artifactId>eelf-core</artifactId>
64 <version>${eelf.version}</version>
65 </dependency>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -050066 <dependency>
67 <groupId>org.onap.logging-analytics</groupId>
68 <artifactId>logging-slf4j</artifactId>
69 <version>${onap.logger.slf4j}</version>
70 </dependency>
Muthuramalingam, Brinda Santh(bs2796)ee467d72018-08-23 15:54:30 +000071
72 <!-- Kotlin Dependencies -->
73 <dependency>
74 <groupId>org.jetbrains.kotlin</groupId>
75 <artifactId>kotlin-stdlib</artifactId>
76 <version>${kotlin.version}</version>
77 </dependency>
78 <dependency>
Muthuramalingam, Brinda Santh(bs2796)aa927022018-11-24 14:25:26 -050079 <groupId>org.jetbrains.kotlinx</groupId>
80 <artifactId>kotlinx-coroutines-core</artifactId>
Muthuramalingam, Brinda Santh(bs2796)c6ffd3c2018-11-10 11:54:05 -050081 <version>${kotlin.couroutines.version}</version>
Muthuramalingam, Brinda Santh(bs2796)ee467d72018-08-23 15:54:30 +000082 </dependency>
83 <dependency>
Muthuramalingam, Brinda Santh(bs2796)cf6cf512018-12-20 11:16:31 -050084 <groupId>org.jetbrains.kotlinx</groupId>
85 <artifactId>kotlinx-coroutines-reactor</artifactId>
86 <version>${kotlin.couroutines.version}</version>
87 </dependency>
88 <dependency>
Muthuramalingam, Brinda Santh(bs2796)ee467d72018-08-23 15:54:30 +000089 <groupId>org.jetbrains.kotlin</groupId>
90 <artifactId>kotlin-reflect</artifactId>
91 <version>${kotlin.version}</version>
92 </dependency>
Muthuramalingam, Brinda Santh(bs2796)c6ffd3c2018-11-10 11:54:05 -050093 <dependency>
94 <groupId>org.jetbrains.kotlin</groupId>
95 <artifactId>kotlin-stdlib-jdk8</artifactId>
96 <version>${kotlin.version}</version>
97 </dependency>
98 <dependency>
99 <groupId>org.jetbrains.kotlin</groupId>
100 <artifactId>kotlin-stdlib-jdk7</artifactId>
101 <version>${kotlin.version}</version>
102 </dependency>
103
Muthuramalingam, Brinda Santh(bs2796)aa927022018-11-24 14:25:26 -0500104 <!-- GRPC Dependencies -->
105 <dependency>
106 <groupId>io.grpc</groupId>
Muthuramalingam, Brinda Santh(bs2796)43aeebf2018-12-01 19:54:07 -0500107 <artifactId>grpc-core</artifactId>
108 <version>${grpc.version}</version>
109 </dependency>
110 <dependency>
111 <groupId>io.grpc</groupId>
Muthuramalingam, Brinda Santh(bs2796)aa927022018-11-24 14:25:26 -0500112 <artifactId>grpc-netty</artifactId>
113 <version>${grpc.version}</version>
114 </dependency>
115 <dependency>
116 <groupId>io.grpc</groupId>
117 <artifactId>grpc-protobuf</artifactId>
118 <version>${grpc.version}</version>
119 </dependency>
120 <dependency>
121 <groupId>io.grpc</groupId>
122 <artifactId>grpc-stub</artifactId>
123 <version>${grpc.version}</version>
124 </dependency>
Muthuramalingam, Brinda Santh(bs2796)3b4a7eb2018-12-07 16:37:03 -0500125 <dependency>
126 <groupId>com.google.protobuf</groupId>
127 <artifactId>protobuf-java-util</artifactId>
128 <version>${protobuff.java.utils.version}</version>
129 </dependency>
Muthuramalingam, Brinda Santh(bs2796)aa927022018-11-24 14:25:26 -0500130
Muthuramalingam, Brinda Santh(bs2796)cbbe0ea2018-11-13 16:47:33 -0500131 <!-- SLI Version -->
132 <dependency>
133 <groupId>org.onap.ccsdk.sli.core</groupId>
134 <artifactId>sli-provider</artifactId>
135 <version>${sli.version}</version>
136 <exclusions>
137 <exclusion>
138 <groupId>commons-lang</groupId>
139 <artifactId>commons-lang</artifactId>
140 </exclusion>
141 <exclusion>
142 <groupId>org.apache.commons</groupId>
143 <artifactId>*</artifactId>
144 </exclusion>
145 <exclusion>
146 <groupId>org.slf4j</groupId>
147 <artifactId>*</artifactId>
148 </exclusion>
149 <exclusion>
150 <groupId>org.opendaylight.mdsal.model</groupId>
151 <artifactId>*</artifactId>
152 </exclusion>
Muthuramalingam, Brinda Santh(bs2796)66439ec2018-12-17 11:15:28 -0500153 <exclusion>
154 <groupId>org.opendaylight.controller</groupId>
155 <artifactId>*</artifactId>
156 </exclusion>
Muthuramalingam, Brinda Santh(bs2796)cbbe0ea2018-11-13 16:47:33 -0500157 <exclusion>
158 <groupId>org.apache.tomcat</groupId>
159 <artifactId>*</artifactId>
160 </exclusion>
161 <exclusion>
162 <groupId>org.apache.karaf.shell</groupId>
163 <artifactId>*</artifactId>
164 </exclusion>
165 <exclusion>
166 <groupId>org.mariadb.jdbc</groupId>
167 <artifactId>*</artifactId>
168 </exclusion>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500169 <exclusion>
170 <groupId>org.powermock</groupId>
171 <artifactId>*</artifactId>
172 </exclusion>
Muthuramalingam, Brinda Santh(bs2796)cbbe0ea2018-11-13 16:47:33 -0500173 </exclusions>
174 </dependency>
175
Muthuramalingam, Brinda Santh(bs2796)ee467d72018-08-23 15:54:30 +0000176
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000177 <!-- Application Module Dependencies -->
178 <dependency>
179 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
180 <artifactId>db-lib</artifactId>
181 <version>${project.version}</version>
182 </dependency>
183 <dependency>
184 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
185 <artifactId>rest-lib</artifactId>
186 <version>${project.version}</version>
187 </dependency>
188 <dependency>
189 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
190 <artifactId>core</artifactId>
191 <version>${project.version}</version>
192 </dependency>
193 <dependency>
194 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000195 <artifactId>execution-service</artifactId>
196 <version>${project.version}</version>
197 </dependency>
198 <dependency>
199 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
Muthuramalingam, Brinda Santh(bs2796)cbbe0ea2018-11-13 16:47:33 -0500200 <artifactId>workflow-service</artifactId>
201 <version>${project.version}</version>
202 </dependency>
203 <dependency>
204 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000205 <artifactId>resource-api</artifactId>
206 <version>${project.version}</version>
207 </dependency>
208 <dependency>
209 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
210 <artifactId>selfservice-api</artifactId>
211 <version>${project.version}</version>
212 </dependency>
213
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500214 <!-- Functions -->
215 <dependency>
216 <groupId>org.onap.ccsdk.apps.blueprintsprocessor.functions</groupId>
217 <artifactId>resource-resolution</artifactId>
218 <version>${project.version}</version>
219 </dependency>
Muthuramalingam, Brinda Santh(bs2796)88c3ca22018-12-04 20:53:22 -0500220 <dependency>
221 <groupId>org.onap.ccsdk.apps.blueprintsprocessor.functions</groupId>
222 <artifactId>python-executor</artifactId>
223 <version>${project.version}</version>
224 </dependency>
225 <dependency>
226 <groupId>org.onap.ccsdk.apps.blueprintsprocessor.functions</groupId>
227 <artifactId>netconf-executor</artifactId>
228 <version>${project.version}</version>
229 </dependency>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500230
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000231 <!-- Application Component Dependency -->
232 <dependency>
Muthuramalingam, Brinda Santh(bs2796)ee467d72018-08-23 15:54:30 +0000233 <groupId>org.onap.ccsdk.apps.controllerblueprints</groupId>
234 <artifactId>resource-dict</artifactId>
Muthuramalingam, Brinda Santh(bs2796)c6ffd3c2018-11-10 11:54:05 -0500235 <version>${project.version}</version>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000236 </dependency>
237
238 <!--Swagger Dependencies -->
239 <dependency>
240 <groupId>io.springfox</groupId>
241 <artifactId>springfox-swagger2</artifactId>
242 <version>${springfox.swagger2.version}</version>
243 </dependency>
244 <dependency>
245 <groupId>io.springfox</groupId>
246 <artifactId>springfox-swagger-ui</artifactId>
247 <version>${springfox.swagger2.version}</version>
248 </dependency>
249
Muthuramalingam, Brinda Santh(bs2796)ee467d72018-08-23 15:54:30 +0000250 <!-- Common Libs -->
251 <dependency>
252 <groupId>org.apache.commons</groupId>
253 <artifactId>commons-lang3</artifactId>
254 <version>3.2.1</version>
255 </dependency>
256 <dependency>
257 <groupId>commons-collections</groupId>
258 <artifactId>commons-collections</artifactId>
259 <version>3.2.2</version>
260 </dependency>
261 <dependency>
262 <groupId>commons-io</groupId>
263 <artifactId>commons-io</artifactId>
264 <version>2.6</version>
265 </dependency>
266 <dependency>
267 <groupId>org.apache.velocity</groupId>
268 <artifactId>velocity</artifactId>
269 <version>1.7</version>
270 </dependency>
271 <dependency>
272 <groupId>com.google.guava</groupId>
273 <artifactId>guava</artifactId>
Muthuramalingam, Brinda Santh(bs2796)c6ffd3c2018-11-10 11:54:05 -0500274 <version>${guava.version}</version>
Muthuramalingam, Brinda Santh(bs2796)ee467d72018-08-23 15:54:30 +0000275 </dependency>
Muthuramalingam, Brinda Santh(bs2796)d2ec19b2018-11-19 12:48:31 -0500276 <dependency>
277 <groupId>org.python</groupId>
278 <artifactId>jython-standalone</artifactId>
279 <version>${jython.version}</version>
280 </dependency>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000281
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000282 <!-- Database -->
283 <dependency>
284 <groupId>com.h2database</groupId>
285 <artifactId>h2</artifactId>
286 <version>${h2database.version}</version>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500287 <scope>test</scope>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000288 </dependency>
289 <!-- Test Dependency -->
290 <dependency>
Brinda Santhafbc1522018-08-23 23:34:05 -0400291 <groupId>org.powermock</groupId>
292 <artifactId>powermock-api-mockito2</artifactId>
Muthuramalingam, Brinda Santh(bs2796)c6ffd3c2018-11-10 11:54:05 -0500293 <version>${powermock.version}</version>
Brinda Santhafbc1522018-08-23 23:34:05 -0400294 <scope>test</scope>
295 </dependency>
296 <dependency>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000297 <groupId>org.jetbrains.kotlin</groupId>
Muthuramalingam, Brinda Santh(bs2796)c6ffd3c2018-11-10 11:54:05 -0500298 <artifactId>kotlin-test-junit</artifactId>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000299 <version>${kotlin.version}</version>
300 <scope>test</scope>
301 </dependency>
Muthuramalingam, Brinda Santh(bs2796)43aeebf2018-12-01 19:54:07 -0500302 <dependency>
303 <groupId>io.grpc</groupId>
304 <artifactId>grpc-testing</artifactId>
305 <version>${grpc.version}</version>
306 <scope>test</scope>
307 </dependency>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000308 </dependencies>
309 </dependencyManagement>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000310
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500311 <dependencies>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000312 <dependency>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500313 <groupId>com.att.eelf</groupId>
314 <artifactId>eelf-core</artifactId>
315 </dependency>
316 <dependency>
317 <groupId>org.onap.logging-analytics</groupId>
318 <artifactId>logging-slf4j</artifactId>
319 </dependency>
320 <dependency>
321 <groupId>org.apache.commons</groupId>
322 <artifactId>commons-lang3</artifactId>
323 </dependency>
324 <dependency>
325 <groupId>commons-collections</groupId>
326 <artifactId>commons-collections</artifactId>
327 </dependency>
328 <dependency>
329 <groupId>commons-io</groupId>
330 <artifactId>commons-io</artifactId>
331 </dependency>
332 <dependency>
333 <groupId>com.jayway.jsonpath</groupId>
334 <artifactId>json-path</artifactId>
335 </dependency>
336 <dependency>
337 <groupId>io.springfox</groupId>
338 <artifactId>springfox-swagger2</artifactId>
339 </dependency>
340 <dependency>
341 <groupId>io.springfox</groupId>
342 <artifactId>springfox-swagger-ui</artifactId>
343 </dependency>
344 <dependency>
345 <groupId>org.jetbrains.kotlin</groupId>
346 <artifactId>kotlin-stdlib</artifactId>
347 </dependency>
348 <dependency>
349 <groupId>org.jetbrains.kotlin</groupId>
350 <artifactId>kotlin-stdlib-jdk8</artifactId>
351 </dependency>
352 <dependency>
353 <groupId>com.fasterxml.jackson.module</groupId>
354 <artifactId>jackson-module-kotlin</artifactId>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000355 </dependency>
Muthuramalingam, Brinda Santh(bs2796)aa927022018-11-24 14:25:26 -0500356 <!-- GRPC Dependencies -->
357 <dependency>
358 <groupId>io.grpc</groupId>
359 <artifactId>grpc-netty</artifactId>
360 </dependency>
361 <dependency>
362 <groupId>io.grpc</groupId>
363 <artifactId>grpc-protobuf</artifactId>
364 </dependency>
365 <dependency>
366 <groupId>io.grpc</groupId>
367 <artifactId>grpc-stub</artifactId>
368 </dependency>
Muthuramalingam, Brinda Santh(bs2796)3b4a7eb2018-12-07 16:37:03 -0500369 <dependency>
370 <groupId>com.google.protobuf</groupId>
371 <artifactId>protobuf-java-util</artifactId>
372 </dependency>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000373 </dependencies>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500374
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000375 <build>
376 <plugins>
377 <plugin>
378 <groupId>org.jetbrains.kotlin</groupId>
379 <artifactId>kotlin-maven-plugin</artifactId>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -0500380 <version>${kotlin.maven.version}</version>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000381 <executions>
382 <execution>
383 <id>compile</id>
Muthuramalingam, Brinda Santh(bs2796)cbbe0ea2018-11-13 16:47:33 -0500384 <goals>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000385 <goal>compile</goal>
386 </goals>
387 <configuration>
388 <sourceDirs>
389 <sourceDir>${project.basedir}/src/main/kotlin</sourceDir>
390 <sourceDir>${project.basedir}/src/main/java</sourceDir>
391 </sourceDirs>
392 </configuration>
393 </execution>
394 <execution>
395 <id>test-compile</id>
396 <goals>
397 <goal>test-compile</goal>
398 </goals>
399 <configuration>
400 <sourceDirs>
401 <sourceDir>${project.basedir}/src/test/kotlin</sourceDir>
402 <sourceDir>${project.basedir}/src/test/java</sourceDir>
403 </sourceDirs>
404 </configuration>
405 </execution>
406 </executions>
407 </plugin>
408 <plugin>
409 <groupId>org.apache.maven.plugins</groupId>
410 <artifactId>maven-compiler-plugin</artifactId>
411 <version>3.5.1</version>
412 <configuration>
413 <source>${maven.compiler.source}</source>
414 <target>${maven.compiler.target}</target>
415 </configuration>
416 </plugin>
417 </plugins>
418 </build>
419</project>