blob: 068a6f0e370884f4a3abf9681d8fe799aed9b96d [file] [log] [blame]
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +00001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright © 2017-2018 AT&T Intellectual Property.
4 ~
Steve Alphonse Siania5f9b6f2019-01-21 11:55:48 -05005 ~ Modifications Copyright © 2019 Bell Canada.
Muthuramalingam, Brinda Santhfd2d3f42019-03-11 11:41:37 -04006 ~ Modifications Copyright © 2019 IBM.
Steve Alphonse Siania5f9b6f2019-01-21 11:55:48 -05007 ~
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +00008 ~ Licensed under the Apache License, Version 2.0 (the "License");
9 ~ you may not use this file except in compliance with the License.
10 ~ You may obtain a copy of the License at
11 ~
12 ~ http://www.apache.org/licenses/LICENSE-2.0
13 ~
14 ~ Unless required by applicable law or agreed to in writing, software
15 ~ distributed under the License is distributed on an "AS IS" BASIS,
16 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 ~ See the License for the specific language governing permissions and
18 ~ limitations under the License.
19 -->
Timoney, Dan (dt5972)743f1dc2019-03-14 13:55:01 -040020<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">
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +000021 <modelVersion>4.0.0</modelVersion>
22 <parent>
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040023 <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +000024 <artifactId>modules</artifactId>
Timoney, Dan (dt5972)f0e6ba62019-08-13 12:31:11 -040025 <version>0.6.0-SNAPSHOT</version>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +000026 </parent>
27
28 <artifactId>commons</artifactId>
29 <packaging>pom</packaging>
30 <name>Blueprints Processor Commons POM</name>
31 <description>Blueprints Processor Commons</description>
32
33 <modules>
Muthuramalingam, Brinda Santhfd2d3f42019-03-11 11:41:37 -040034 <module>processor-core</module>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +000035 <module>db-lib</module>
36 <module>rest-lib</module>
janani bd6946b82019-02-04 12:05:22 +053037 <module>dmaap-lib</module>
Brinda Santh0371cdd2019-04-10 15:11:10 -040038 <module>grpc-lib</module>
Brinda Santh0042e9e2019-05-20 15:27:55 -040039 <module>message-lib</module>
Brinda Santh15680d32019-05-15 13:50:20 -040040 <module>ssh-lib</module>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +000041 </modules>
42 <dependencies>
43 <dependency>
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040044 <groupId>org.onap.ccsdk.cds.controllerblueprints</groupId>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -050045 <artifactId>resource-dict</artifactId>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +000046 </dependency>
Muthuramalingam, Brinda Santh(bs2796)a283fe32018-12-06 10:30:59 -050047 <!-- Test Dependencies -->
48 <dependency>
Muthuramalingam, Brinda Santhfd2d3f42019-03-11 11:41:37 -040049 <groupId>io.mockk</groupId>
50 <artifactId>mockk</artifactId>
51 <scope>test</scope>
52 </dependency>
53 <dependency>
Muthuramalingam, Brinda Santh(bs2796)a283fe32018-12-06 10:30:59 -050054 <groupId>org.powermock</groupId>
55 <artifactId>powermock-api-mockito2</artifactId>
56 <scope>test</scope>
57 </dependency>
58 <dependency>
59 <groupId>org.springframework.boot</groupId>
60 <artifactId>spring-boot-starter-test</artifactId>
61 <scope>test</scope>
62 </dependency>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +000063 <dependency>
64 <groupId>org.jetbrains.kotlin</groupId>
Muthuramalingam, Brinda Santh(bs2796)c6ffd3c2018-11-10 11:54:05 -050065 <artifactId>kotlin-test-junit</artifactId>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +000066 <scope>test</scope>
67 </dependency>
68 <dependency>
Muthuramalingam, Brinda Santhfd2d3f42019-03-11 11:41:37 -040069 <groupId>org.jetbrains.kotlinx</groupId>
70 <artifactId>kotlinx-coroutines-test</artifactId>
71 <scope>test</scope>
72 </dependency>
73 <dependency>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +000074 <groupId>io.projectreactor</groupId>
75 <artifactId>reactor-test</artifactId>
76 <scope>test</scope>
77 </dependency>
78 </dependencies>
79
80</project>