Update versions for London
[ccsdk/cds.git] / ms / blueprintsprocessor / functions / 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 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">
20     <modelVersion>4.0.0</modelVersion>
21
22     <parent>
23         <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
24         <artifactId>blueprintsprocessor-parent</artifactId>
25         <version>1.5.0-SNAPSHOT</version>
26         <relativePath>../parent</relativePath>
27     </parent>
28
29     <artifactId>blueprintsprocessor-functions</artifactId>
30     <packaging>pom</packaging>
31
32     <name>MS Blueprints Processor Functions (Root)</name>
33
34     <modules>
35         <module>resource-resolution</module>
36         <module>restful-executor</module>
37         <module>ansible-awx-executor</module>
38         <module>python-executor</module>
39         <module>netconf-executor</module>
40         <module>restconf-executor</module>
41         <module>cli-executor</module>
42         <module>config-snapshots</module>
43         <module>message-prioritization</module>
44         <module>k8s-connection-plugin</module>
45         <module>blueprint-audit-status</module>
46     </modules>
47
48     <dependencies>
49         <dependency>
50             <groupId>org.onap.ccsdk.cds.blueprintsprocessor.modules</groupId>
51             <artifactId>execution-service</artifactId>
52         </dependency>
53         <!-- Test Dependencies -->
54         <dependency>
55             <groupId>io.mockk</groupId>
56             <artifactId>mockk</artifactId>
57             <scope>test</scope>
58         </dependency>
59         <dependency>
60             <groupId>org.mock-server</groupId>
61             <artifactId>mockserver-netty</artifactId>
62             <scope>test</scope>
63         </dependency>
64         <dependency>
65             <groupId>org.powermock</groupId>
66             <artifactId>powermock-api-mockito2</artifactId>
67             <scope>test</scope>
68         </dependency>
69         <dependency>
70             <groupId>org.springframework.boot</groupId>
71             <artifactId>spring-boot-starter-test</artifactId>
72             <scope>test</scope>
73         </dependency>
74         <dependency>
75             <groupId>org.jetbrains.kotlin</groupId>
76             <artifactId>kotlin-test-junit</artifactId>
77             <scope>test</scope>
78         </dependency>
79         <dependency>
80             <groupId>org.jetbrains.kotlinx</groupId>
81             <artifactId>kotlinx-coroutines-test</artifactId>
82             <scope>test</scope>
83         </dependency>
84         <dependency>
85             <groupId>io.projectreactor</groupId>
86             <artifactId>reactor-test</artifactId>
87             <scope>test</scope>
88         </dependency>
89     </dependencies>
90 </project>