blob: 03d46f493ac8d01cf217a4cc43ef7a98d79a7e93 [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>
Muthuramalingam, Brinda Santh908e6272019-01-14 17:08:01 -050055 <dependency>
56 <groupId>org.apache.velocity</groupId>
57 <artifactId>velocity</artifactId>
58 </dependency>
Alexis de Talhouët47a0cd92019-01-09 16:57:48 -050059 <!--Testing dependencies-->
Timoney, Dan (dt5972)4e087952019-01-04 10:43:33 -050060 <dependency>
61 <groupId>org.jetbrains.kotlin</groupId>
62 <artifactId>kotlin-test-junit</artifactId>
63 <scope>test</scope>
64 </dependency>
Alexis de Talhouët47a0cd92019-01-09 16:57:48 -050065 <dependency>
66 <groupId>io.mockk</groupId>
67 <artifactId>mockk</artifactId>
68 <scope>test</scope>
69 </dependency>
Muthuramalingam, Brinda Santha3450eb2019-01-11 11:30:40 -050070 <dependency>
71 <groupId>org.jetbrains.kotlinx</groupId>
72 <artifactId>kotlinx-coroutines-test</artifactId>
73 <scope>test</scope>
74 </dependency>
Timoney, Dan (dt5972)4e087952019-01-04 10:43:33 -050075 </dependencies>
76
77</project>
78