Merge "Conform ccsdk/sli/plugins to ONAP Style"
[ccsdk/sli/plugins.git] / restapi-call-node / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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/maven-v4_0_0.xsd">
3     <parent>
4         <groupId>org.onap.ccsdk.sli.plugins</groupId>
5         <artifactId>sdnc-plugins</artifactId>
6         <version>0.1.0-SNAPSHOT</version>
7     </parent>
8
9     <modelVersion>4.0.0</modelVersion>
10     <packaging>pom</packaging>
11
12     <groupId>org.onap.ccsdk.sli.plugins</groupId>
13     <artifactId>restapi-call-node</artifactId>
14     <version>0.1.0-SNAPSHOT</version>
15
16     <name>RESTAPI Call Node</name>
17     <description>This is an implementation of DG Execute Node that makes a call to an external REST API</description>
18
19     <dependencyManagement>
20         <dependencies>
21             <dependency>
22                 <groupId>org.onap.ccsdk.sli.plugins</groupId>
23                 <artifactId>restapi-call-node-features</artifactId>
24                 <classifier>features</classifier>
25                 <type>xml</type>
26                 <version>${project.version}</version>
27             </dependency>
28             <dependency>
29                 <groupId>org.onap.ccsdk.sli.plugins</groupId>
30                 <artifactId>restapi-call-node-provider</artifactId>
31                 <version>${project.version}</version>
32             </dependency>
33         </dependencies>
34     </dependencyManagement>
35
36     <modules>
37         <module>provider</module>
38         <module>features</module>
39         <module>installer</module>
40     </modules>
41 </project>
42