Merge "Fixnig file import in script, import and template&mapping."
[ccsdk/cds.git] / ms / blueprintsprocessor / modules / blueprints / blueprint-core / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ Copyright © 2017-2018 AT&T Intellectual Property.
4   ~ Modifications Copyright © 2018 - 2019 IBM, Bell Canada
5   ~
6   ~ Licensed under the Apache License, Version 2.0 (the "License");
7   ~ you may not use this file except in compliance with the License.
8   ~ You may obtain a copy of the License at
9   ~
10   ~     http://www.apache.org/licenses/LICENSE-2.0
11   ~
12   ~ Unless required by applicable law or agreed to in writing, software
13   ~ distributed under the License is distributed on an "AS IS" BASIS,
14   ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15   ~ See the License for the specific language governing permissions and
16   ~ limitations under the License.
17   -->
18
19 <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">
20     <modelVersion>4.0.0</modelVersion>
21
22     <parent>
23        <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
24        <artifactId>blueprints</artifactId>
25        <version>1.0.0-SNAPSHOT</version>
26     </parent>
27
28     <artifactId>blueprint-core</artifactId>
29
30     <name>Controller Blueprints Core</name>
31
32     <dependencies>
33         <!-- Compiler Service -->
34         <dependency>
35             <groupId>org.jetbrains.kotlin</groupId>
36             <artifactId>kotlin-compiler-embeddable</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>org.jetbrains.kotlin</groupId>
40             <artifactId>kotlin-scripting-jvm-host</artifactId>
41             <exclusions>
42                 <exclusion>
43                     <groupId>org.jetbrains.kotlin</groupId>
44                     <artifactId>kotlin-compiler</artifactId>
45                 </exclusion>
46             </exclusions>
47         </dependency>
48         <dependency>
49             <groupId>org.jetbrains.kotlin</groupId>
50             <artifactId>kotlin-script-util</artifactId>
51         </dependency>
52         <dependency>
53             <groupId>org.jetbrains.kotlin</groupId>
54             <artifactId>kotlin-script-runtime</artifactId>
55         </dependency>
56
57         <dependency>
58             <groupId>com.fasterxml.jackson.dataformat</groupId>
59             <artifactId>jackson-dataformat-xml</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>com.fasterxml.jackson.dataformat</groupId>
63             <artifactId>jackson-dataformat-yaml</artifactId>
64         </dependency>
65         <dependency>
66             <groupId>com.fasterxml.jackson.module</groupId>
67             <artifactId>jackson-module-jsonSchema</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>io.projectreactor</groupId>
71             <artifactId>reactor-core</artifactId>
72         </dependency>
73         <dependency>
74             <groupId>org.yaml</groupId>
75             <artifactId>snakeyaml</artifactId>
76         </dependency>
77         <dependency>
78             <groupId>org.apache.velocity</groupId>
79             <artifactId>velocity</artifactId>
80             <exclusions>
81                 <exclusion>
82                     <groupId>org.slf4j</groupId>
83                     <artifactId>slf4j-api</artifactId>
84                 </exclusion>
85             </exclusions>
86         </dependency>
87         <dependency>
88             <groupId>com.hubspot.jinjava</groupId>
89             <artifactId>jinjava</artifactId>
90         </dependency>
91         <dependency>
92             <groupId>org.springframework.boot</groupId>
93             <artifactId>spring-boot-starter-logging</artifactId>
94         </dependency>
95         <dependency>
96             <groupId>org.apache.commons</groupId>
97             <artifactId>commons-compress</artifactId>
98         </dependency>
99         <!--Testing dependencies-->
100         <dependency>
101             <groupId>org.jetbrains.kotlin</groupId>
102             <artifactId>kotlin-test-junit</artifactId>
103             <scope>test</scope>
104         </dependency>
105         <dependency>
106             <groupId>io.mockk</groupId>
107             <artifactId>mockk</artifactId>
108             <scope>test</scope>
109         </dependency>
110         <dependency>
111             <groupId>org.jetbrains.kotlinx</groupId>
112             <artifactId>kotlinx-coroutines-test</artifactId>
113             <scope>test</scope>
114         </dependency>
115     </dependencies>
116 </project>