diff options
author | Dan Timoney <dtimoney@att.com> | 2017-02-15 15:27:41 -0500 |
---|---|---|
committer | Dan Timoney <dtimoney@att.com> | 2017-02-15 15:28:46 -0500 |
commit | 2750f8c09a37c7cd5ff8678b3d0e5f7dac687376 (patch) | |
tree | c77c01c58f326c11434c03a76b34b21a99b5fd70 /restapi-call-node/pom.xml | |
parent | ed6b164bda6903ccfbd487f8c52a53bdf046ffd7 (diff) |
Initial commit for OpenECOMP SDN-C plugins
Change-Id: I0deb50b4f047c419181bb8c9e4df09c67495aa79
Signed-off-by: Dan Timoney <dtimoney@att.com>
Diffstat (limited to 'restapi-call-node/pom.xml')
-rwxr-xr-x | restapi-call-node/pom.xml | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/restapi-call-node/pom.xml b/restapi-call-node/pom.xml new file mode 100755 index 0000000..58a89b3 --- /dev/null +++ b/restapi-call-node/pom.xml @@ -0,0 +1,42 @@ +<?xml version="1.0" encoding="UTF-8"?> +<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"> + <parent> + <groupId>org.openecomp.sdnc.plugins</groupId> + <artifactId>sdnc-plugins</artifactId> + <version>1.0.0</version> + </parent> + + <modelVersion>4.0.0</modelVersion> + <packaging>pom</packaging> + + <groupId>org.openecomp.sdnc.plugins</groupId> + <artifactId>restapi-call-node</artifactId> + <version>1.0.0</version> + + <name>RESTAPI Call Node</name> + <description>This is an implementation of DG Execute Node that makes a call to an external REST API</description> + + <dependencyManagement> + <dependencies> + <dependency> + <groupId>org.openecomp.sdnc.plugins</groupId> + <artifactId>restapi-call-node-features</artifactId> + <classifier>features</classifier> + <type>xml</type> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>org.openecomp.sdnc.plugins</groupId> + <artifactId>restapi-call-node-provider</artifactId> + <version>${project.version}</version> + </dependency> + </dependencies> + </dependencyManagement> + + <modules> + <module>provider</module> + <module>features</module> + <module>installer</module> + </modules> +</project> + |