blob: f33146b6a2b3cf6922af06529b1a61a60ab4be99 [file] [log] [blame]
Timoney, Dan (dt5972)4e087952019-01-04 10:43:33 -05001<?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>
Alexis de Talhouët47a0cd92019-01-09 16:57:48 -050055 <!--Testing dependencies-->
Timoney, Dan (dt5972)4e087952019-01-04 10:43:33 -050056 <dependency>
57 <groupId>org.jetbrains.kotlin</groupId>
58 <artifactId>kotlin-test-junit</artifactId>
59 <scope>test</scope>
60 </dependency>
Alexis de Talhouët47a0cd92019-01-09 16:57:48 -050061 <dependency>
62 <groupId>io.mockk</groupId>
63 <artifactId>mockk</artifactId>
64 <scope>test</scope>
65 </dependency>
Muthuramalingam, Brinda Santha3450eb2019-01-11 11:30:40 -050066 <dependency>
67 <groupId>org.jetbrains.kotlinx</groupId>
68 <artifactId>kotlinx-coroutines-test</artifactId>
69 <scope>test</scope>
70 </dependency>
Timoney, Dan (dt5972)4e087952019-01-04 10:43:33 -050071 </dependencies>
72
73</project>
74