blob: b44236b88587a241c0ee4341bf5d4f80b0c557f0 [file] [log] [blame]
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +00001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright © 2017-2018 AT&T Intellectual Property.
4 ~
Brinda Santhe4d1a922018-08-23 23:34:05 -04005 ~ Modifications Copyright © 2018 IBM.
6 ~
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-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 -->
Timoney, Dan (dt5972)b78d5812019-01-08 14:40:54 -050019<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +000020 <modelVersion>4.0.0</modelVersion>
Muthuramalingam, Brinda Santh(bs2796)d3efe722018-08-23 15:54:30 +000021 <parent>
22 <groupId>org.onap.ccsdk.apps</groupId>
23 <artifactId>blueprintsprocessor</artifactId>
Timoney, Dan (dt5972)a8588a42019-01-04 10:43:33 -050024 <version>0.4.1-SNAPSHOT</version>
Muthuramalingam, Brinda Santh(bs2796)d3efe722018-08-23 15:54:30 +000025 </parent>
26 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +000027 <artifactId>parent</artifactId>
28 <packaging>pom</packaging>
29 <name>Blueprints Processor Parent</name>
30 <description>Blueprints Processor Parent</description>
31 <properties>
Muthuramalingam, Brinda Santh(bs2796)bd288182018-12-01 19:54:07 -050032 <spring.boot.version>2.1.1.RELEASE</spring.boot.version>
33 <spring.version>5.1.3.RELEASE</spring.version>
Muthuramalingam, Brinda Santh(bs2796)ec928662018-11-15 08:36:28 -050034 <kotlin.version>1.3.10</kotlin.version>
Muthuramalingam, Brinda Santh(bs2796)d80471b2018-11-24 14:25:26 -050035 <kotlin.maven.version>1.3.10</kotlin.maven.version>
Muthuramalingam, Brinda Santh(bs2796)a9bf0542018-11-10 11:54:05 -050036 <kotlin.couroutines.version>1.0.1</kotlin.couroutines.version>
Muthuramalingam, Brinda Santh(bs2796)d80471b2018-11-24 14:25:26 -050037 <grpc.version>1.16.1</grpc.version>
Muthuramalingam, Brinda Santh(bs2796)c9d21f32018-12-07 16:37:03 -050038 <protobuff.java.utils.version>3.6.1</protobuff.java.utils.version>
Muthuramalingam, Brinda Santh(bs2796)d3efe722018-08-23 15:54:30 +000039 <eelf.version>1.0.0</eelf.version>
Timoney, Dan (dt5972)a8588a42019-01-04 10:43:33 -050040 <sli.version>0.4.1-SNAPSHOT</sli.version>
Muthuramalingam, Brinda Santh(bs2796)a9bf0542018-11-10 11:54:05 -050041 <guava.version>26.0-jre</guava.version>
Muthuramalingam, Brinda Santh(bs2796)e96fa502018-11-19 12:48:31 -050042 <jython.version>2.7.1</jython.version>
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +000043 <springfox.swagger2.version>2.9.2</springfox.swagger2.version>
44 <h2database.version>1.4.197</h2database.version>
Muthuramalingam, Brinda Santh(bs2796)ec928662018-11-15 08:36:28 -050045 <onap.logger.slf4j>1.2.2</onap.logger.slf4j>
Muthuramalingam, Brinda Santh(bs2796)a9bf0542018-11-10 11:54:05 -050046 <powermock.version>1.7.4</powermock.version>
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +000047 </properties>
48 <dependencyManagement>
49 <dependencies>
Muthuramalingam, Brinda Santh(bs2796)d3efe722018-08-23 15:54:30 +000050 <!-- Spring Boot -->
51 <dependency>
52 <groupId>org.springframework.boot</groupId>
53 <artifactId>spring-boot-starter-parent</artifactId>
54 <version>${spring.boot.version}</version>
55 <type>pom</type>
56 <scope>import</scope>
57 </dependency>
58
59 <!-- Logging Dependencies -->
60 <dependency>
61 <groupId>com.att.eelf</groupId>
62 <artifactId>eelf-core</artifactId>
63 <version>${eelf.version}</version>
64 </dependency>
Muthuramalingam, Brinda Santh(bs2796)ec928662018-11-15 08:36:28 -050065 <dependency>
66 <groupId>org.onap.logging-analytics</groupId>
67 <artifactId>logging-slf4j</artifactId>
68 <version>${onap.logger.slf4j}</version>
69 </dependency>
Muthuramalingam, Brinda Santh(bs2796)d3efe722018-08-23 15:54:30 +000070
71 <!-- Kotlin Dependencies -->
72 <dependency>
73 <groupId>org.jetbrains.kotlin</groupId>
74 <artifactId>kotlin-stdlib</artifactId>
75 <version>${kotlin.version}</version>
76 </dependency>
77 <dependency>
Muthuramalingam, Brinda Santh(bs2796)d80471b2018-11-24 14:25:26 -050078 <groupId>org.jetbrains.kotlinx</groupId>
79 <artifactId>kotlinx-coroutines-core</artifactId>
Muthuramalingam, Brinda Santh(bs2796)a9bf0542018-11-10 11:54:05 -050080 <version>${kotlin.couroutines.version}</version>
Muthuramalingam, Brinda Santh(bs2796)d3efe722018-08-23 15:54:30 +000081 </dependency>
82 <dependency>
Muthuramalingam, Brinda Santh(bs2796)d35235f2018-12-20 11:16:31 -050083 <groupId>org.jetbrains.kotlinx</groupId>
84 <artifactId>kotlinx-coroutines-reactor</artifactId>
85 <version>${kotlin.couroutines.version}</version>
86 </dependency>
87 <dependency>
Muthuramalingam, Brinda Santh(bs2796)d3efe722018-08-23 15:54:30 +000088 <groupId>org.jetbrains.kotlin</groupId>
89 <artifactId>kotlin-reflect</artifactId>
90 <version>${kotlin.version}</version>
91 </dependency>
Muthuramalingam, Brinda Santh(bs2796)a9bf0542018-11-10 11:54:05 -050092 <dependency>
93 <groupId>org.jetbrains.kotlin</groupId>
94 <artifactId>kotlin-stdlib-jdk8</artifactId>
95 <version>${kotlin.version}</version>
96 </dependency>
97 <dependency>
98 <groupId>org.jetbrains.kotlin</groupId>
99 <artifactId>kotlin-stdlib-jdk7</artifactId>
100 <version>${kotlin.version}</version>
101 </dependency>
102
Muthuramalingam, Brinda Santh(bs2796)d80471b2018-11-24 14:25:26 -0500103 <!-- GRPC Dependencies -->
104 <dependency>
105 <groupId>io.grpc</groupId>
Muthuramalingam, Brinda Santh(bs2796)bd288182018-12-01 19:54:07 -0500106 <artifactId>grpc-core</artifactId>
107 <version>${grpc.version}</version>
108 </dependency>
109 <dependency>
110 <groupId>io.grpc</groupId>
Muthuramalingam, Brinda Santh(bs2796)d80471b2018-11-24 14:25:26 -0500111 <artifactId>grpc-netty</artifactId>
112 <version>${grpc.version}</version>
113 </dependency>
114 <dependency>
115 <groupId>io.grpc</groupId>
116 <artifactId>grpc-protobuf</artifactId>
117 <version>${grpc.version}</version>
118 </dependency>
119 <dependency>
120 <groupId>io.grpc</groupId>
121 <artifactId>grpc-stub</artifactId>
122 <version>${grpc.version}</version>
123 </dependency>
Muthuramalingam, Brinda Santh(bs2796)c9d21f32018-12-07 16:37:03 -0500124 <dependency>
125 <groupId>com.google.protobuf</groupId>
126 <artifactId>protobuf-java-util</artifactId>
127 <version>${protobuff.java.utils.version}</version>
128 </dependency>
Muthuramalingam, Brinda Santh(bs2796)d80471b2018-11-24 14:25:26 -0500129
Muthuramalingam, Brinda Santh(bs2796)ee9f70f2018-11-13 16:47:33 -0500130 <!-- SLI Version -->
131 <dependency>
132 <groupId>org.onap.ccsdk.sli.core</groupId>
133 <artifactId>sli-provider</artifactId>
134 <version>${sli.version}</version>
135 <exclusions>
136 <exclusion>
137 <groupId>commons-lang</groupId>
138 <artifactId>commons-lang</artifactId>
139 </exclusion>
140 <exclusion>
141 <groupId>org.apache.commons</groupId>
142 <artifactId>*</artifactId>
143 </exclusion>
144 <exclusion>
145 <groupId>org.slf4j</groupId>
146 <artifactId>*</artifactId>
147 </exclusion>
148 <exclusion>
149 <groupId>org.opendaylight.mdsal.model</groupId>
150 <artifactId>*</artifactId>
151 </exclusion>
Muthuramalingam, Brinda Santh(bs2796)430152b2018-12-17 11:15:28 -0500152 <exclusion>
153 <groupId>org.opendaylight.controller</groupId>
154 <artifactId>*</artifactId>
155 </exclusion>
Muthuramalingam, Brinda Santh(bs2796)ee9f70f2018-11-13 16:47:33 -0500156 <exclusion>
157 <groupId>org.apache.tomcat</groupId>
158 <artifactId>*</artifactId>
159 </exclusion>
160 <exclusion>
161 <groupId>org.apache.karaf.shell</groupId>
162 <artifactId>*</artifactId>
163 </exclusion>
164 <exclusion>
165 <groupId>org.mariadb.jdbc</groupId>
166 <artifactId>*</artifactId>
167 </exclusion>
Muthuramalingam, Brinda Santh(bs2796)ec928662018-11-15 08:36:28 -0500168 <exclusion>
169 <groupId>org.powermock</groupId>
170 <artifactId>*</artifactId>
171 </exclusion>
Muthuramalingam, Brinda Santh(bs2796)ee9f70f2018-11-13 16:47:33 -0500172 </exclusions>
173 </dependency>
174
Muthuramalingam, Brinda Santh(bs2796)d3efe722018-08-23 15:54:30 +0000175
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +0000176 <!-- Application Module Dependencies -->
177 <dependency>
178 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
179 <artifactId>db-lib</artifactId>
180 <version>${project.version}</version>
181 </dependency>
182 <dependency>
183 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
184 <artifactId>rest-lib</artifactId>
185 <version>${project.version}</version>
186 </dependency>
187 <dependency>
188 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
189 <artifactId>core</artifactId>
190 <version>${project.version}</version>
191 </dependency>
192 <dependency>
193 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +0000194 <artifactId>execution-service</artifactId>
195 <version>${project.version}</version>
196 </dependency>
197 <dependency>
198 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
Muthuramalingam, Brinda Santh(bs2796)ee9f70f2018-11-13 16:47:33 -0500199 <artifactId>workflow-service</artifactId>
200 <version>${project.version}</version>
201 </dependency>
202 <dependency>
203 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +0000204 <artifactId>resource-api</artifactId>
205 <version>${project.version}</version>
206 </dependency>
207 <dependency>
208 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
209 <artifactId>selfservice-api</artifactId>
210 <version>${project.version}</version>
211 </dependency>
212
Muthuramalingam, Brinda Santh(bs2796)ec928662018-11-15 08:36:28 -0500213 <!-- Functions -->
214 <dependency>
215 <groupId>org.onap.ccsdk.apps.blueprintsprocessor.functions</groupId>
216 <artifactId>resource-resolution</artifactId>
217 <version>${project.version}</version>
218 </dependency>
Muthuramalingam, Brinda Santh(bs2796)3365c012018-12-04 20:53:22 -0500219 <dependency>
220 <groupId>org.onap.ccsdk.apps.blueprintsprocessor.functions</groupId>
221 <artifactId>python-executor</artifactId>
222 <version>${project.version}</version>
223 </dependency>
224 <dependency>
225 <groupId>org.onap.ccsdk.apps.blueprintsprocessor.functions</groupId>
226 <artifactId>netconf-executor</artifactId>
227 <version>${project.version}</version>
228 </dependency>
Muthuramalingam, Brinda Santh(bs2796)ec928662018-11-15 08:36:28 -0500229
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +0000230 <!-- Application Component Dependency -->
231 <dependency>
Muthuramalingam, Brinda Santh(bs2796)d3efe722018-08-23 15:54:30 +0000232 <groupId>org.onap.ccsdk.apps.controllerblueprints</groupId>
233 <artifactId>resource-dict</artifactId>
Muthuramalingam, Brinda Santh(bs2796)a9bf0542018-11-10 11:54:05 -0500234 <version>${project.version}</version>
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +0000235 </dependency>
236
237 <!--Swagger Dependencies -->
238 <dependency>
239 <groupId>io.springfox</groupId>
240 <artifactId>springfox-swagger2</artifactId>
241 <version>${springfox.swagger2.version}</version>
242 </dependency>
243 <dependency>
244 <groupId>io.springfox</groupId>
245 <artifactId>springfox-swagger-ui</artifactId>
246 <version>${springfox.swagger2.version}</version>
247 </dependency>
248
Muthuramalingam, Brinda Santh(bs2796)d3efe722018-08-23 15:54:30 +0000249 <!-- Common Libs -->
250 <dependency>
251 <groupId>org.apache.commons</groupId>
252 <artifactId>commons-lang3</artifactId>
253 <version>3.2.1</version>
254 </dependency>
255 <dependency>
256 <groupId>commons-collections</groupId>
257 <artifactId>commons-collections</artifactId>
258 <version>3.2.2</version>
259 </dependency>
260 <dependency>
261 <groupId>commons-io</groupId>
262 <artifactId>commons-io</artifactId>
263 <version>2.6</version>
264 </dependency>
265 <dependency>
266 <groupId>org.apache.velocity</groupId>
267 <artifactId>velocity</artifactId>
268 <version>1.7</version>
269 </dependency>
270 <dependency>
271 <groupId>com.google.guava</groupId>
272 <artifactId>guava</artifactId>
Muthuramalingam, Brinda Santh(bs2796)a9bf0542018-11-10 11:54:05 -0500273 <version>${guava.version}</version>
Muthuramalingam, Brinda Santh(bs2796)d3efe722018-08-23 15:54:30 +0000274 </dependency>
Muthuramalingam, Brinda Santh(bs2796)e96fa502018-11-19 12:48:31 -0500275 <dependency>
276 <groupId>org.python</groupId>
277 <artifactId>jython-standalone</artifactId>
278 <version>${jython.version}</version>
279 </dependency>
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +0000280
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +0000281 <!-- Database -->
282 <dependency>
283 <groupId>com.h2database</groupId>
284 <artifactId>h2</artifactId>
285 <version>${h2database.version}</version>
Muthuramalingam, Brinda Santh(bs2796)ec928662018-11-15 08:36:28 -0500286 <scope>test</scope>
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +0000287 </dependency>
288 <!-- Test Dependency -->
289 <dependency>
Brinda Santhe4d1a922018-08-23 23:34:05 -0400290 <groupId>org.powermock</groupId>
291 <artifactId>powermock-api-mockito2</artifactId>
Muthuramalingam, Brinda Santh(bs2796)a9bf0542018-11-10 11:54:05 -0500292 <version>${powermock.version}</version>
Brinda Santhe4d1a922018-08-23 23:34:05 -0400293 <scope>test</scope>
294 </dependency>
295 <dependency>
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +0000296 <groupId>org.jetbrains.kotlin</groupId>
Muthuramalingam, Brinda Santh(bs2796)a9bf0542018-11-10 11:54:05 -0500297 <artifactId>kotlin-test-junit</artifactId>
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +0000298 <version>${kotlin.version}</version>
299 <scope>test</scope>
300 </dependency>
Muthuramalingam, Brinda Santh(bs2796)bd288182018-12-01 19:54:07 -0500301 <dependency>
302 <groupId>io.grpc</groupId>
303 <artifactId>grpc-testing</artifactId>
304 <version>${grpc.version}</version>
305 <scope>test</scope>
306 </dependency>
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +0000307 </dependencies>
308 </dependencyManagement>
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +0000309
Muthuramalingam, Brinda Santh(bs2796)ec928662018-11-15 08:36:28 -0500310 <dependencies>
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +0000311 <dependency>
Muthuramalingam, Brinda Santh(bs2796)ec928662018-11-15 08:36:28 -0500312 <groupId>com.att.eelf</groupId>
313 <artifactId>eelf-core</artifactId>
314 </dependency>
315 <dependency>
316 <groupId>org.onap.logging-analytics</groupId>
317 <artifactId>logging-slf4j</artifactId>
318 </dependency>
319 <dependency>
320 <groupId>org.apache.commons</groupId>
321 <artifactId>commons-lang3</artifactId>
322 </dependency>
323 <dependency>
324 <groupId>commons-collections</groupId>
325 <artifactId>commons-collections</artifactId>
326 </dependency>
327 <dependency>
328 <groupId>commons-io</groupId>
329 <artifactId>commons-io</artifactId>
330 </dependency>
331 <dependency>
332 <groupId>com.jayway.jsonpath</groupId>
333 <artifactId>json-path</artifactId>
334 </dependency>
335 <dependency>
336 <groupId>io.springfox</groupId>
337 <artifactId>springfox-swagger2</artifactId>
338 </dependency>
339 <dependency>
340 <groupId>io.springfox</groupId>
341 <artifactId>springfox-swagger-ui</artifactId>
342 </dependency>
343 <dependency>
344 <groupId>org.jetbrains.kotlin</groupId>
345 <artifactId>kotlin-stdlib</artifactId>
346 </dependency>
347 <dependency>
348 <groupId>org.jetbrains.kotlin</groupId>
349 <artifactId>kotlin-stdlib-jdk8</artifactId>
350 </dependency>
351 <dependency>
352 <groupId>com.fasterxml.jackson.module</groupId>
353 <artifactId>jackson-module-kotlin</artifactId>
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +0000354 </dependency>
Muthuramalingam, Brinda Santh(bs2796)d80471b2018-11-24 14:25:26 -0500355 <!-- GRPC Dependencies -->
356 <dependency>
357 <groupId>io.grpc</groupId>
358 <artifactId>grpc-netty</artifactId>
359 </dependency>
360 <dependency>
361 <groupId>io.grpc</groupId>
362 <artifactId>grpc-protobuf</artifactId>
363 </dependency>
364 <dependency>
365 <groupId>io.grpc</groupId>
366 <artifactId>grpc-stub</artifactId>
367 </dependency>
Muthuramalingam, Brinda Santh(bs2796)c9d21f32018-12-07 16:37:03 -0500368 <dependency>
369 <groupId>com.google.protobuf</groupId>
370 <artifactId>protobuf-java-util</artifactId>
371 </dependency>
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +0000372 </dependencies>
Muthuramalingam, Brinda Santh(bs2796)ec928662018-11-15 08:36:28 -0500373
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +0000374 <build>
375 <plugins>
376 <plugin>
377 <groupId>org.jetbrains.kotlin</groupId>
378 <artifactId>kotlin-maven-plugin</artifactId>
Muthuramalingam, Brinda Santh(bs2796)ec928662018-11-15 08:36:28 -0500379 <version>${kotlin.maven.version}</version>
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +0000380 <executions>
381 <execution>
382 <id>compile</id>
Muthuramalingam, Brinda Santh(bs2796)ee9f70f2018-11-13 16:47:33 -0500383 <goals>
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +0000384 <goal>compile</goal>
385 </goals>
386 <configuration>
387 <sourceDirs>
388 <sourceDir>${project.basedir}/src/main/kotlin</sourceDir>
389 <sourceDir>${project.basedir}/src/main/java</sourceDir>
390 </sourceDirs>
391 </configuration>
392 </execution>
393 <execution>
394 <id>test-compile</id>
395 <goals>
396 <goal>test-compile</goal>
397 </goals>
398 <configuration>
399 <sourceDirs>
400 <sourceDir>${project.basedir}/src/test/kotlin</sourceDir>
401 <sourceDir>${project.basedir}/src/test/java</sourceDir>
402 </sourceDirs>
403 </configuration>
404 </execution>
405 </executions>
406 </plugin>
407 <plugin>
408 <groupId>org.apache.maven.plugins</groupId>
409 <artifactId>maven-compiler-plugin</artifactId>
410 <version>3.5.1</version>
411 <configuration>
412 <source>${maven.compiler.source}</source>
413 <target>${maven.compiler.target}</target>
414 </configuration>
415 </plugin>
416 </plugins>
417 </build>
418</project>