blob: 40a5c259d683e3f3515260ed8cd8d731a733cb5a [file] [log] [blame]
Alexis de Talhouët7f6c5272019-01-07 16:33:02 -05001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright © 2017-2018 AT&T Intellectual Property.
4 ~
5 ~ Modifications Copyright © 2018 IBM.
6 ~
Steve Sianif7d891d2019-04-03 15:23:27 -04007 ~ Modifications Copyright © 2019 IBM, Bell Canada
8 ~
Alexis de Talhouët7f6c5272019-01-07 16:33:02 -05009 ~ Licensed under the Apache License, Version 2.0 (the "License");
10 ~ you may not use this file except in compliance with the License.
11 ~ You may obtain a copy of the License at
12 ~
13 ~ http://www.apache.org/licenses/LICENSE-2.0
14 ~
15 ~ Unless required by applicable law or agreed to in writing, software
16 ~ distributed under the License is distributed on an "AS IS" BASIS,
17 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 ~ See the License for the specific language governing permissions and
19 ~ limitations under the License.
20 -->
Muthuramalingam, Brinda Santh1636ef12019-03-20 12:43:58 -040021<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
Alexis de Talhouët7f6c5272019-01-07 16:33:02 -050023 <modelVersion>4.0.0</modelVersion>
24 <parent>
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040025 <groupId>org.onap.ccsdk.cds.controllerblueprints</groupId>
Alexis de Talhouët7f6c5272019-01-07 16:33:02 -050026 <artifactId>modules</artifactId>
Timoney, Dan (dt5972)9b8aec22019-03-19 16:31:51 -040027 <version>0.4.2-SNAPSHOT</version>
Alexis de Talhouët7f6c5272019-01-07 16:33:02 -050028 </parent>
29 <artifactId>service</artifactId>
30 <name>Controller Blueprints Service</name>
31
32 <properties>
33 </properties>
34
35 <dependencies>
36 <dependency>
Muthuramalingam, Brinda Santh1636ef12019-03-20 12:43:58 -040037 <groupId>org.jetbrains.kotlinx</groupId>
38 <artifactId>kotlinx-coroutines-reactor</artifactId>
39 </dependency>
40 <dependency>
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040041 <groupId>org.onap.ccsdk.cds.controllerblueprints</groupId>
Alexis de Talhouët7f6c5272019-01-07 16:33:02 -050042 <artifactId>db-resources</artifactId>
43 </dependency>
44 <dependency>
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040045 <groupId>org.onap.ccsdk.cds.controllerblueprints</groupId>
Alexis de Talhouët7f6c5272019-01-07 16:33:02 -050046 <artifactId>blueprint-validation</artifactId>
47 </dependency>
48 <dependency>
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040049 <groupId>org.onap.ccsdk.cds.controllerblueprints</groupId>
Muthuramalingam, Brinda Santh6d6ebfa2019-01-25 20:17:35 -050050 <artifactId>blueprint-scripts</artifactId>
Alexis de Talhouët7f6c5272019-01-07 16:33:02 -050051 </dependency>
52 <dependency>
53 <groupId>org.apache.velocity</groupId>
54 <artifactId>velocity</artifactId>
55 </dependency>
56 <dependency>
Steve Sianif7d891d2019-04-03 15:23:27 -040057 <groupId>com.hubspot.jinjava</groupId>
58 <artifactId>jinjava</artifactId>
59 </dependency>
60 <dependency>
Alexis de Talhouët7f6c5272019-01-07 16:33:02 -050061 <groupId>org.springframework.boot</groupId>
62 <artifactId>spring-boot-starter-webflux</artifactId>
63 </dependency>
64 <dependency>
65 <groupId>org.springframework.boot</groupId>
66 <artifactId>spring-boot-starter-data-jpa</artifactId>
67 </dependency>
68 <dependency>
69 <groupId>com.h2database</groupId>
70 <artifactId>h2</artifactId>
71 <scope>runtime</scope>
72 </dependency>
73 <dependency>
74 <groupId>org.mariadb.jdbc</groupId>
75 <artifactId>mariadb-java-client</artifactId>
76 </dependency>
Alexis de Talhouët7f6c5272019-01-07 16:33:02 -050077 </dependencies>
78</project>