diff options
author | Skip Wonnell <kw5258@att.com> | 2017-08-15 21:18:04 -0500 |
---|---|---|
committer | Patrick Brady <pb071s@att.com> | 2017-08-18 05:46:40 +0000 |
commit | cf4b15ab00249af6f4d05afd75d16bec689f3241 (patch) | |
tree | 14468fef53aecf04700eab421acca88fc8e853d4 /appc-directed-graph/appc-dgraph/pom.xml | |
parent | ab6c2c0cd441cf40723016e9a82aeeeb933fec7e (diff) |
Initial add of appc-directed-graph bundles
Directed Graph library
Additional JIRA Issues: APPC-66, APPC-71, APPC-74
Issue-ID: APPC-65
Change-Id: I1bd643f7675dec19e562e99db65bafa0dcda6ef4
Signed-off-by: Skip Wonnell <kw5258@att.com>
Diffstat (limited to 'appc-directed-graph/appc-dgraph/pom.xml')
-rw-r--r-- | appc-directed-graph/appc-dgraph/pom.xml | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/appc-directed-graph/appc-dgraph/pom.xml b/appc-directed-graph/appc-dgraph/pom.xml new file mode 100644 index 000000000..d421dd3cb --- /dev/null +++ b/appc-directed-graph/appc-dgraph/pom.xml @@ -0,0 +1,63 @@ +<?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.appc</groupId> + <artifactId>appc-directed-graph</artifactId> + <version>1.1.0-SNAPSHOT</version> + </parent> + + <modelVersion>4.0.0</modelVersion> + <packaging>pom</packaging> + <groupId>org.openecomp.appc</groupId> + <artifactId>appc-dgraph</artifactId> + <version>1.1.0-SNAPSHOT</version> + + <name>APPC DG</name> + <description>APPC DG Module</description> + + <properties> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + <odl.mdsal.version>2.1.1-Boron-SR1</odl.mdsal.version> + <odl.controller.mdsal.version>1.4.1-Boron-SR1</odl.controller.mdsal.version> + <openecomp.sdnc.sli.version>1.1.0</openecomp.sdnc.sli.version> + <openecomp.sdnc.dblib.version>1.1.0</openecomp.sdnc.dblib.version> + <openecomp.sdnc.sql-resource.version>1.1.0</openecomp.sdnc.sql-resource.version> + </properties> + + + <dependencyManagement> + <dependencies> + <dependency> + <groupId>org.openecomp.sdnctl</groupId> + <artifactId>appc-dg-provider</artifactId> + <version>${project.version}</version> + </dependency> + + <!-- OpenEcomp --> + <dependency> + <groupId>org.openecomp.sdnc.core</groupId> + <artifactId>sli-provider</artifactId> + </dependency> + + <dependency> + <groupId>org.openecomp.sdnc.core</groupId> + <artifactId>dblib-provider</artifactId> + <version>${sdnctl.dblib.version}</version> + </dependency> + </dependencies> + </dependencyManagement> + + <profiles> + <profile> + <id>default</id> + <activation> + <activeByDefault>true</activeByDefault> + </activation> + <modules> + <module>provider</module> + </modules> + </profile> + </profiles> + +</project> |