blob: 983e2772e96117284b0335b21f115956d160dd0d [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 -->
Timoney, Dan (dt5972)84b361d2019-04-24 15:05:00 -040021<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">
Alexis de Talhouët7f6c5272019-01-07 16:33:02 -050022 <modelVersion>4.0.0</modelVersion>
23 <parent>
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040024 <groupId>org.onap.ccsdk.cds.controllerblueprints</groupId>
Alexis de Talhouët7f6c5272019-01-07 16:33:02 -050025 <artifactId>modules</artifactId>
Timoney, Dan (dt5972)f6aba622019-04-30 14:28:15 -040026 <version>0.5.0-SNAPSHOT</version>
Alexis de Talhouët7f6c5272019-01-07 16:33:02 -050027 </parent>
28 <artifactId>service</artifactId>
29 <name>Controller Blueprints Service</name>
30
31 <properties>
32 </properties>
33
34 <dependencies>
35 <dependency>
Muthuramalingam, Brinda Santh1636ef12019-03-20 12:43:58 -040036 <groupId>org.jetbrains.kotlinx</groupId>
37 <artifactId>kotlinx-coroutines-reactor</artifactId>
38 </dependency>
39 <dependency>
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040040 <groupId>org.onap.ccsdk.cds.controllerblueprints</groupId>
Alexis de Talhouët7f6c5272019-01-07 16:33:02 -050041 <artifactId>db-resources</artifactId>
42 </dependency>
43 <dependency>
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040044 <groupId>org.onap.ccsdk.cds.controllerblueprints</groupId>
Alexis de Talhouët7f6c5272019-01-07 16:33:02 -050045 <artifactId>blueprint-validation</artifactId>
46 </dependency>
47 <dependency>
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040048 <groupId>org.onap.ccsdk.cds.controllerblueprints</groupId>
Muthuramalingam, Brinda Santh6d6ebfa2019-01-25 20:17:35 -050049 <artifactId>blueprint-scripts</artifactId>
Alexis de Talhouët7f6c5272019-01-07 16:33:02 -050050 </dependency>
51 <dependency>
52 <groupId>org.apache.velocity</groupId>
53 <artifactId>velocity</artifactId>
54 </dependency>
55 <dependency>
Steve Sianif7d891d2019-04-03 15:23:27 -040056 <groupId>com.hubspot.jinjava</groupId>
57 <artifactId>jinjava</artifactId>
58 </dependency>
59 <dependency>
Alexis de Talhouët7f6c5272019-01-07 16:33:02 -050060 <groupId>org.springframework.boot</groupId>
61 <artifactId>spring-boot-starter-webflux</artifactId>
Steve Sianie827a3a2019-07-09 15:53:57 -040062 <exclusions>
63 <exclusion>
64 <groupId>org.springframework.boot</groupId>
65 <artifactId>spring-boot-starter-logging</artifactId>
66 </exclusion>
67 </exclusions>
Alexis de Talhouët7f6c5272019-01-07 16:33:02 -050068 </dependency>
69 <dependency>
70 <groupId>org.springframework.boot</groupId>
71 <artifactId>spring-boot-starter-data-jpa</artifactId>
Steve Sianie827a3a2019-07-09 15:53:57 -040072 <exclusions>
73 <exclusion>
74 <groupId>org.springframework.boot</groupId>
75 <artifactId>spring-boot-starter-logging</artifactId>
76 </exclusion>
77 </exclusions>
Alexis de Talhouët7f6c5272019-01-07 16:33:02 -050078 </dependency>
79 <dependency>
80 <groupId>com.h2database</groupId>
81 <artifactId>h2</artifactId>
82 <scope>runtime</scope>
83 </dependency>
84 <dependency>
85 <groupId>org.mariadb.jdbc</groupId>
86 <artifactId>mariadb-java-client</artifactId>
87 </dependency>
Alexis de Talhouët7f6c5272019-01-07 16:33:02 -050088 </dependencies>
89</project>