Update to use correct parent pom
[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         <!--Testing dependencies-->
56         <dependency>
57             <groupId>org.jetbrains.kotlin</groupId>
58             <artifactId>kotlin-test-junit</artifactId>
59             <scope>test</scope>
60         </dependency>
61         <dependency>
62             <groupId>io.mockk</groupId>
63             <artifactId>mockk</artifactId>
64             <scope>test</scope>
65         </dependency>
66     </dependencies>
67
68 </project>
69