34fdb557f2fd5f812ae52046a8f7fd312a5f9ce8
[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>modules-blueprints</artifactId>
25         <version>1.1.0-SNAPSHOT</version>
26     </parent>
27
28     <groupId>org.onap.ccsdk.cds.blueprintsprocessor.modules</groupId>
29     <artifactId>blueprint-core</artifactId>
30
31     <name>MS Blueprints Processor Modules - Blueprints - Blueprints Core</name>
32
33     <dependencies>
34         <!-- Compiler Service -->
35         <dependency>
36             <groupId>org.jetbrains.kotlin</groupId>
37             <artifactId>kotlin-compiler-embeddable</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>org.jetbrains.kotlin</groupId>
41             <artifactId>kotlin-scripting-jvm-host</artifactId>
42             <exclusions>
43                 <exclusion>
44                     <groupId>org.jetbrains.kotlin</groupId>
45                     <artifactId>kotlin-compiler</artifactId>
46                 </exclusion>
47             </exclusions>
48         </dependency>
49         <dependency>
50             <groupId>org.jetbrains.kotlin</groupId>
51             <artifactId>kotlin-script-util</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>org.jetbrains.kotlin</groupId>
55             <artifactId>kotlin-script-runtime</artifactId>
56         </dependency>
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>