Blueprint Processor Python Script Components
[ccsdk/cds.git] / components / core / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ Copyright © 2017-2018 AT&T Intellectual Property.
4   ~ Modifications Copyright © 2018 IBM.
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
20   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
21   xmlns="http://maven.apache.org/POM/4.0.0"
22   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
23     <modelVersion>4.0.0</modelVersion>
24     <parent>
25         <groupId>org.onap.ccsdk.apps.components</groupId>
26         <artifactId>parent</artifactId>
27         <version>0.4.1-SNAPSHOT</version>
28         <relativePath>../parent</relativePath>
29     </parent>
30     <groupId>org.onap.ccsdk.apps.controllerblueprints</groupId>
31     <artifactId>core</artifactId>
32     <name>Controller Blueprints Core</name>
33
34     <dependencies>
35         <dependency>
36             <groupId>com.fasterxml.jackson.dataformat</groupId>
37             <artifactId>jackson-dataformat-xml</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>com.fasterxml.jackson.dataformat</groupId>
41             <artifactId>jackson-dataformat-yaml</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>com.fasterxml.jackson.module</groupId>
45             <artifactId>jackson-module-jsonSchema</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>io.projectreactor</groupId>
49             <artifactId>reactor-core</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>org.yaml</groupId>
53             <artifactId>snakeyaml</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>org.apache.velocity</groupId>
57             <artifactId>velocity</artifactId>
58         </dependency>
59         <!--Testing dependencies-->
60         <dependency>
61             <groupId>org.jetbrains.kotlin</groupId>
62             <artifactId>kotlin-test-junit</artifactId>
63             <scope>test</scope>
64         </dependency>
65         <dependency>
66             <groupId>io.mockk</groupId>
67             <artifactId>mockk</artifactId>
68             <scope>test</scope>
69         </dependency>
70         <dependency>
71             <groupId>org.jetbrains.kotlinx</groupId>
72             <artifactId>kotlinx-coroutines-test</artifactId>
73             <scope>test</scope>
74         </dependency>
75     </dependencies>
76
77 </project>
78