Update versions for London
[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.5.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         <dependency>
35             <groupId>org.jetbrains.kotlin</groupId>
36             <artifactId>kotlin-script-runtime</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>com.fasterxml.jackson.dataformat</groupId>
40             <artifactId>jackson-dataformat-xml</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>com.fasterxml.jackson.dataformat</groupId>
44             <artifactId>jackson-dataformat-yaml</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>com.fasterxml.jackson.module</groupId>
48             <artifactId>jackson-module-jsonSchema</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>io.projectreactor</groupId>
52             <artifactId>reactor-core</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>org.yaml</groupId>
56             <artifactId>snakeyaml</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>org.apache.velocity</groupId>
60             <artifactId>velocity-engine-core</artifactId>
61             <version>2.3</version>
62             <exclusions>
63                 <exclusion>
64                     <groupId>org.slf4j</groupId>
65                     <artifactId>slf4j-api</artifactId>
66                 </exclusion>
67             </exclusions>
68         </dependency>
69         <dependency>
70             <groupId>commons-lang</groupId>
71             <artifactId>commons-lang</artifactId>
72         </dependency>
73         <dependency>
74             <groupId>com.hubspot.jinjava</groupId>
75             <artifactId>jinjava</artifactId>
76         </dependency>
77         <dependency>
78             <groupId>org.springframework.boot</groupId>
79             <artifactId>spring-boot-starter-logging</artifactId>
80         </dependency>
81         <dependency>
82             <groupId>org.apache.commons</groupId>
83             <artifactId>commons-compress</artifactId>
84         </dependency>
85         <!--Testing dependencies-->
86         <dependency>
87             <groupId>org.jetbrains.kotlin</groupId>
88             <artifactId>kotlin-test-junit</artifactId>
89             <scope>test</scope>
90         </dependency>
91         <dependency>
92             <groupId>io.mockk</groupId>
93             <artifactId>mockk</artifactId>
94             <scope>test</scope>
95         </dependency>
96         <dependency>
97             <groupId>org.jetbrains.kotlinx</groupId>
98             <artifactId>kotlinx-coroutines-test</artifactId>
99             <scope>test</scope>
100         </dependency>
101     </dependencies>
102 </project>