blob: 24cc352c9f8c39c05305cbea6a01d898bf4f1b40 [file] [log] [blame]
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -05001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright © 2017-2018 AT&T Intellectual Property.
Muthuramalingam, Brinda Santh2f15f492019-02-12 15:53:39 -05004 ~ Modifications Copyright © 2018 IBM.
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -05005 ~
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 -->
Timoney, Dan (dt5972)38f6f0a2019-01-08 14:40:54 -050018<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)2e942322018-11-15 08:36:28 -050019 <parent>
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040020 <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -050021 <artifactId>parent</artifactId>
Timoney, Dan (dt5972)5da3a812019-03-19 16:31:51 -040022 <version>0.4.2-SNAPSHOT</version>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -050023 <relativePath>../parent</relativePath>
24 </parent>
25 <modelVersion>4.0.0</modelVersion>
26 <packaging>pom</packaging>
27 <artifactId>functions</artifactId>
Alexis de Talhouët79ac5f02019-01-03 16:53:40 -050028 <name>Blueprints Processor Functions</name>
29 <description>Blueprints Processor Functions</description>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -050030 <modules>
31 <module>resource-resolution</module>
Muthuramalingam, Brinda Santh(bs2796)d2ec19b2018-11-19 12:48:31 -050032 <module>python-executor</module>
Muthuramalingam, Brinda Santh(bs2796)88c3ca22018-12-04 20:53:22 -050033 <module>netconf-executor</module>
Muthuramalingam, Brinda Santh2f15f492019-02-12 15:53:39 -050034 <module>restconf-executor</module>
Muthuramalingam, Brinda Santhab7895a2019-03-15 07:59:22 -040035 <module>cli-executor</module>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -050036 </modules>
37
38 <dependencies>
39 <dependency>
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040040 <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -050041 <artifactId>execution-service</artifactId>
42 </dependency>
43 <!-- Test Dependencies -->
44 <dependency>
Muthuramalingam, Brinda Santhb359a832019-02-15 18:42:34 -050045 <groupId>io.mockk</groupId>
46 <artifactId>mockk</artifactId>
47 <scope>test</scope>
48 </dependency>
49 <dependency>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -050050 <groupId>org.powermock</groupId>
51 <artifactId>powermock-api-mockito2</artifactId>
52 <scope>test</scope>
53 </dependency>
54 <dependency>
55 <groupId>org.springframework.boot</groupId>
56 <artifactId>spring-boot-starter-test</artifactId>
57 <scope>test</scope>
58 </dependency>
59 <dependency>
60 <groupId>org.jetbrains.kotlin</groupId>
61 <artifactId>kotlin-test-junit</artifactId>
62 <scope>test</scope>
63 </dependency>
64 <dependency>
Muthuramalingam, Brinda Santhb359a832019-02-15 18:42:34 -050065 <groupId>org.jetbrains.kotlinx</groupId>
66 <artifactId>kotlinx-coroutines-test</artifactId>
67 <scope>test</scope>
68 </dependency>
69 <dependency>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -050070 <groupId>io.projectreactor</groupId>
71 <artifactId>reactor-test</artifactId>
72 <scope>test</scope>
73 </dependency>
74 </dependencies>
Timoney, Dan (dt5972)38f6f0a2019-01-08 14:40:54 -050075</project>