blob: 4d417f38be5e1163549082630cd3aec9544d1212 [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 -->
Dan Timoney8edec222020-04-07 11:51:20 -040018
Timoney, Dan (dt5972)38f6f0a2019-01-08 14:40:54 -050019<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">
SINGAL, KAPIL (ks220y)24f39fd2019-09-17 16:36:59 +000020 <modelVersion>4.0.0</modelVersion>
21
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -050022 <parent>
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040023 <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -050024 <artifactId>parent</artifactId>
Dan Timoney8edec222020-04-07 11:51:20 -040025 <version>1.0.0-SNAPSHOT</version>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -050026 <relativePath>../parent</relativePath>
27 </parent>
SINGAL, KAPIL (ks220y)24f39fd2019-09-17 16:36:59 +000028
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -050029 <artifactId>functions</artifactId>
SINGAL, KAPIL (ks220y)24f39fd2019-09-17 16:36:59 +000030 <packaging>pom</packaging>
31
Alexis de Talhouët79ac5f02019-01-03 16:53:40 -050032 <name>Blueprints Processor Functions</name>
33 <description>Blueprints Processor Functions</description>
SINGAL, KAPIL (ks220y)24f39fd2019-09-17 16:36:59 +000034
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -050035 <modules>
36 <module>resource-resolution</module>
Huang Chengfdfeef72020-02-04 03:53:15 +000037 <module>restful-executor</module>
Serge Simarda3d9ac82019-05-17 06:39:58 -040038 <module>ansible-awx-executor</module>
Muthuramalingam, Brinda Santh(bs2796)d2ec19b2018-11-19 12:48:31 -050039 <module>python-executor</module>
Muthuramalingam, Brinda Santh(bs2796)88c3ca22018-12-04 20:53:22 -050040 <module>netconf-executor</module>
Muthuramalingam, Brinda Santh2f15f492019-02-12 15:53:39 -050041 <module>restconf-executor</module>
Muthuramalingam, Brinda Santhab7895a2019-03-15 07:59:22 -040042 <module>cli-executor</module>
Serge Simard34c42462019-08-08 10:55:57 -040043 <module>config-snapshots</module>
Brinda Santhada372a2019-11-11 19:35:39 -050044 <module>message-prioritizaion</module>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -050045 </modules>
46
47 <dependencies>
48 <dependency>
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040049 <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -050050 <artifactId>execution-service</artifactId>
51 </dependency>
52 <!-- Test Dependencies -->
53 <dependency>
Muthuramalingam, Brinda Santhb359a832019-02-15 18:42:34 -050054 <groupId>io.mockk</groupId>
55 <artifactId>mockk</artifactId>
56 <scope>test</scope>
57 </dependency>
58 <dependency>
Steve Siani81ff21b2019-04-08 10:38:41 -040059 <groupId>org.mock-server</groupId>
60 <artifactId>mockserver-netty</artifactId>
61 <scope>test</scope>
62 </dependency>
63 <dependency>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -050064 <groupId>org.powermock</groupId>
65 <artifactId>powermock-api-mockito2</artifactId>
66 <scope>test</scope>
67 </dependency>
68 <dependency>
69 <groupId>org.springframework.boot</groupId>
70 <artifactId>spring-boot-starter-test</artifactId>
71 <scope>test</scope>
72 </dependency>
73 <dependency>
74 <groupId>org.jetbrains.kotlin</groupId>
75 <artifactId>kotlin-test-junit</artifactId>
76 <scope>test</scope>
77 </dependency>
78 <dependency>
Muthuramalingam, Brinda Santhb359a832019-02-15 18:42:34 -050079 <groupId>org.jetbrains.kotlinx</groupId>
80 <artifactId>kotlinx-coroutines-test</artifactId>
81 <scope>test</scope>
82 </dependency>
83 <dependency>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -050084 <groupId>io.projectreactor</groupId>
85 <artifactId>reactor-test</artifactId>
86 <scope>test</scope>
87 </dependency>
88 </dependencies>
Timoney, Dan (dt5972)38f6f0a2019-01-08 14:40:54 -050089</project>