blob: ba8e92114d895c575503c595e89d105b83e03e25 [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 -->
Muthuramalingam, Brinda Santh(bs2796)ee9f70f2018-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)8bcc7272018-08-15 21:31:10 +000021 <modelVersion>4.0.0</modelVersion>
Muthuramalingam, Brinda Santh(bs2796)d3efe722018-08-23 15:54:30 +000022 <parent>
23 <groupId>org.onap.ccsdk.apps</groupId>
24 <artifactId>blueprintsprocessor</artifactId>
Timoney, Dan (dt5972)71ed2c92018-10-25 10:34:51 -040025 <version>0.4.0-SNAPSHOT</version>
Muthuramalingam, Brinda Santh(bs2796)d3efe722018-08-23 15:54:30 +000026 </parent>
27 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-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)a9bf0542018-11-10 11:54:05 -050033 <spring.boot.version>2.0.6.RELEASE</spring.boot.version>
34 <spring.version>5.0.10.RELEASE</spring.version>
Muthuramalingam, Brinda Santh(bs2796)ec928662018-11-15 08:36:28 -050035 <kotlin.version>1.3.10</kotlin.version>
Muthuramalingam, Brinda Santh(bs2796)d80471b2018-11-24 14:25:26 -050036 <kotlin.maven.version>1.3.10</kotlin.maven.version>
Muthuramalingam, Brinda Santh(bs2796)a9bf0542018-11-10 11:54:05 -050037 <kotlin.couroutines.version>1.0.1</kotlin.couroutines.version>
Muthuramalingam, Brinda Santh(bs2796)d80471b2018-11-24 14:25:26 -050038 <grpc.version>1.16.1</grpc.version>
Muthuramalingam, Brinda Santh(bs2796)d3efe722018-08-23 15:54:30 +000039 <eelf.version>1.0.0</eelf.version>
Muthuramalingam, Brinda Santh(bs2796)ee9f70f2018-11-13 16:47:33 -050040 <sli.version>0.3.1</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>
83 <groupId>org.jetbrains.kotlin</groupId>
84 <artifactId>kotlin-reflect</artifactId>
85 <version>${kotlin.version}</version>
86 </dependency>
Muthuramalingam, Brinda Santh(bs2796)a9bf0542018-11-10 11:54:05 -050087 <dependency>
88 <groupId>org.jetbrains.kotlin</groupId>
89 <artifactId>kotlin-stdlib-jdk8</artifactId>
90 <version>${kotlin.version}</version>
91 </dependency>
92 <dependency>
93 <groupId>org.jetbrains.kotlin</groupId>
94 <artifactId>kotlin-stdlib-jdk7</artifactId>
95 <version>${kotlin.version}</version>
96 </dependency>
97
Muthuramalingam, Brinda Santh(bs2796)d80471b2018-11-24 14:25:26 -050098 <!-- GRPC Dependencies -->
99 <dependency>
100 <groupId>io.grpc</groupId>
101 <artifactId>grpc-netty</artifactId>
102 <version>${grpc.version}</version>
103 </dependency>
104 <dependency>
105 <groupId>io.grpc</groupId>
106 <artifactId>grpc-protobuf</artifactId>
107 <version>${grpc.version}</version>
108 </dependency>
109 <dependency>
110 <groupId>io.grpc</groupId>
111 <artifactId>grpc-stub</artifactId>
112 <version>${grpc.version}</version>
113 </dependency>
114
Muthuramalingam, Brinda Santh(bs2796)ee9f70f2018-11-13 16:47:33 -0500115 <!-- SLI Version -->
116 <dependency>
117 <groupId>org.onap.ccsdk.sli.core</groupId>
118 <artifactId>sli-provider</artifactId>
119 <version>${sli.version}</version>
120 <exclusions>
121 <exclusion>
122 <groupId>commons-lang</groupId>
123 <artifactId>commons-lang</artifactId>
124 </exclusion>
125 <exclusion>
126 <groupId>org.apache.commons</groupId>
127 <artifactId>*</artifactId>
128 </exclusion>
129 <exclusion>
130 <groupId>org.slf4j</groupId>
131 <artifactId>*</artifactId>
132 </exclusion>
133 <exclusion>
134 <groupId>org.opendaylight.mdsal.model</groupId>
135 <artifactId>*</artifactId>
136 </exclusion>
137 <!--<exclusion>-->
138 <!--<groupId>org.opendaylight.controller</groupId>-->
139 <!--<artifactId>*</artifactId>-->
140 <!--</exclusion>-->
141 <exclusion>
142 <groupId>org.apache.tomcat</groupId>
143 <artifactId>*</artifactId>
144 </exclusion>
145 <exclusion>
146 <groupId>org.apache.karaf.shell</groupId>
147 <artifactId>*</artifactId>
148 </exclusion>
149 <exclusion>
150 <groupId>org.mariadb.jdbc</groupId>
151 <artifactId>*</artifactId>
152 </exclusion>
Muthuramalingam, Brinda Santh(bs2796)ec928662018-11-15 08:36:28 -0500153 <exclusion>
154 <groupId>org.powermock</groupId>
155 <artifactId>*</artifactId>
156 </exclusion>
Muthuramalingam, Brinda Santh(bs2796)ee9f70f2018-11-13 16:47:33 -0500157 </exclusions>
158 </dependency>
159
Muthuramalingam, Brinda Santh(bs2796)d3efe722018-08-23 15:54:30 +0000160
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +0000161 <!-- Application Module Dependencies -->
162 <dependency>
163 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
164 <artifactId>db-lib</artifactId>
165 <version>${project.version}</version>
166 </dependency>
167 <dependency>
168 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
169 <artifactId>rest-lib</artifactId>
170 <version>${project.version}</version>
171 </dependency>
172 <dependency>
173 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
174 <artifactId>core</artifactId>
175 <version>${project.version}</version>
176 </dependency>
177 <dependency>
178 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +0000179 <artifactId>execution-service</artifactId>
180 <version>${project.version}</version>
181 </dependency>
182 <dependency>
183 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
Muthuramalingam, Brinda Santh(bs2796)ee9f70f2018-11-13 16:47:33 -0500184 <artifactId>workflow-service</artifactId>
185 <version>${project.version}</version>
186 </dependency>
187 <dependency>
188 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +0000189 <artifactId>resource-api</artifactId>
190 <version>${project.version}</version>
191 </dependency>
192 <dependency>
193 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
194 <artifactId>selfservice-api</artifactId>
195 <version>${project.version}</version>
196 </dependency>
197
Muthuramalingam, Brinda Santh(bs2796)ec928662018-11-15 08:36:28 -0500198 <!-- Functions -->
199 <dependency>
200 <groupId>org.onap.ccsdk.apps.blueprintsprocessor.functions</groupId>
201 <artifactId>resource-resolution</artifactId>
202 <version>${project.version}</version>
203 </dependency>
204
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +0000205 <!-- Application Component Dependency -->
206 <dependency>
Muthuramalingam, Brinda Santh(bs2796)d3efe722018-08-23 15:54:30 +0000207 <groupId>org.onap.ccsdk.apps.controllerblueprints</groupId>
208 <artifactId>resource-dict</artifactId>
Muthuramalingam, Brinda Santh(bs2796)a9bf0542018-11-10 11:54:05 -0500209 <version>${project.version}</version>
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +0000210 </dependency>
211
212 <!--Swagger Dependencies -->
213 <dependency>
214 <groupId>io.springfox</groupId>
215 <artifactId>springfox-swagger2</artifactId>
216 <version>${springfox.swagger2.version}</version>
217 </dependency>
218 <dependency>
219 <groupId>io.springfox</groupId>
220 <artifactId>springfox-swagger-ui</artifactId>
221 <version>${springfox.swagger2.version}</version>
222 </dependency>
223
Muthuramalingam, Brinda Santh(bs2796)d3efe722018-08-23 15:54:30 +0000224 <!-- Common Libs -->
225 <dependency>
226 <groupId>org.apache.commons</groupId>
227 <artifactId>commons-lang3</artifactId>
228 <version>3.2.1</version>
229 </dependency>
230 <dependency>
231 <groupId>commons-collections</groupId>
232 <artifactId>commons-collections</artifactId>
233 <version>3.2.2</version>
234 </dependency>
235 <dependency>
236 <groupId>commons-io</groupId>
237 <artifactId>commons-io</artifactId>
238 <version>2.6</version>
239 </dependency>
240 <dependency>
241 <groupId>org.apache.velocity</groupId>
242 <artifactId>velocity</artifactId>
243 <version>1.7</version>
244 </dependency>
245 <dependency>
246 <groupId>com.google.guava</groupId>
247 <artifactId>guava</artifactId>
Muthuramalingam, Brinda Santh(bs2796)a9bf0542018-11-10 11:54:05 -0500248 <version>${guava.version}</version>
Muthuramalingam, Brinda Santh(bs2796)d3efe722018-08-23 15:54:30 +0000249 </dependency>
Muthuramalingam, Brinda Santh(bs2796)e96fa502018-11-19 12:48:31 -0500250 <dependency>
251 <groupId>org.python</groupId>
252 <artifactId>jython-standalone</artifactId>
253 <version>${jython.version}</version>
254 </dependency>
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +0000255
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +0000256 <!-- Database -->
257 <dependency>
258 <groupId>com.h2database</groupId>
259 <artifactId>h2</artifactId>
260 <version>${h2database.version}</version>
Muthuramalingam, Brinda Santh(bs2796)ec928662018-11-15 08:36:28 -0500261 <scope>test</scope>
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +0000262 </dependency>
263 <!-- Test Dependency -->
264 <dependency>
Brinda Santhe4d1a922018-08-23 23:34:05 -0400265 <groupId>org.powermock</groupId>
266 <artifactId>powermock-api-mockito2</artifactId>
Muthuramalingam, Brinda Santh(bs2796)a9bf0542018-11-10 11:54:05 -0500267 <version>${powermock.version}</version>
Brinda Santhe4d1a922018-08-23 23:34:05 -0400268 <scope>test</scope>
269 </dependency>
270 <dependency>
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +0000271 <groupId>org.jetbrains.kotlin</groupId>
Muthuramalingam, Brinda Santh(bs2796)a9bf0542018-11-10 11:54:05 -0500272 <artifactId>kotlin-test-junit</artifactId>
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +0000273 <version>${kotlin.version}</version>
274 <scope>test</scope>
275 </dependency>
276 </dependencies>
277 </dependencyManagement>
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +0000278
Muthuramalingam, Brinda Santh(bs2796)ec928662018-11-15 08:36:28 -0500279 <dependencies>
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +0000280 <dependency>
Muthuramalingam, Brinda Santh(bs2796)ec928662018-11-15 08:36:28 -0500281 <groupId>com.att.eelf</groupId>
282 <artifactId>eelf-core</artifactId>
283 </dependency>
284 <dependency>
285 <groupId>org.onap.logging-analytics</groupId>
286 <artifactId>logging-slf4j</artifactId>
287 </dependency>
288 <dependency>
289 <groupId>org.apache.commons</groupId>
290 <artifactId>commons-lang3</artifactId>
291 </dependency>
292 <dependency>
293 <groupId>commons-collections</groupId>
294 <artifactId>commons-collections</artifactId>
295 </dependency>
296 <dependency>
297 <groupId>commons-io</groupId>
298 <artifactId>commons-io</artifactId>
299 </dependency>
300 <dependency>
301 <groupId>com.jayway.jsonpath</groupId>
302 <artifactId>json-path</artifactId>
303 </dependency>
304 <dependency>
305 <groupId>io.springfox</groupId>
306 <artifactId>springfox-swagger2</artifactId>
307 </dependency>
308 <dependency>
309 <groupId>io.springfox</groupId>
310 <artifactId>springfox-swagger-ui</artifactId>
311 </dependency>
312 <dependency>
313 <groupId>org.jetbrains.kotlin</groupId>
314 <artifactId>kotlin-stdlib</artifactId>
315 </dependency>
316 <dependency>
317 <groupId>org.jetbrains.kotlin</groupId>
318 <artifactId>kotlin-stdlib-jdk8</artifactId>
319 </dependency>
320 <dependency>
321 <groupId>com.fasterxml.jackson.module</groupId>
322 <artifactId>jackson-module-kotlin</artifactId>
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +0000323 </dependency>
Muthuramalingam, Brinda Santh(bs2796)d80471b2018-11-24 14:25:26 -0500324 <!-- GRPC Dependencies -->
325 <dependency>
326 <groupId>io.grpc</groupId>
327 <artifactId>grpc-netty</artifactId>
328 </dependency>
329 <dependency>
330 <groupId>io.grpc</groupId>
331 <artifactId>grpc-protobuf</artifactId>
332 </dependency>
333 <dependency>
334 <groupId>io.grpc</groupId>
335 <artifactId>grpc-stub</artifactId>
336 </dependency>
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +0000337 </dependencies>
Muthuramalingam, Brinda Santh(bs2796)ec928662018-11-15 08:36:28 -0500338
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +0000339 <build>
340 <plugins>
341 <plugin>
342 <groupId>org.jetbrains.kotlin</groupId>
343 <artifactId>kotlin-maven-plugin</artifactId>
Muthuramalingam, Brinda Santh(bs2796)ec928662018-11-15 08:36:28 -0500344 <version>${kotlin.maven.version}</version>
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +0000345 <executions>
346 <execution>
347 <id>compile</id>
Muthuramalingam, Brinda Santh(bs2796)ee9f70f2018-11-13 16:47:33 -0500348 <goals>
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +0000349 <goal>compile</goal>
350 </goals>
351 <configuration>
352 <sourceDirs>
353 <sourceDir>${project.basedir}/src/main/kotlin</sourceDir>
354 <sourceDir>${project.basedir}/src/main/java</sourceDir>
355 </sourceDirs>
356 </configuration>
357 </execution>
358 <execution>
359 <id>test-compile</id>
360 <goals>
361 <goal>test-compile</goal>
362 </goals>
363 <configuration>
364 <sourceDirs>
365 <sourceDir>${project.basedir}/src/test/kotlin</sourceDir>
366 <sourceDir>${project.basedir}/src/test/java</sourceDir>
367 </sourceDirs>
368 </configuration>
369 </execution>
370 </executions>
371 </plugin>
372 <plugin>
373 <groupId>org.apache.maven.plugins</groupId>
374 <artifactId>maven-compiler-plugin</artifactId>
375 <version>3.5.1</version>
376 <configuration>
377 <source>${maven.compiler.source}</source>
378 <target>${maven.compiler.target}</target>
379 </configuration>
380 </plugin>
381 </plugins>
382 </build>
383</project>