blob: d421dd3cb49c36b60036ca659381719c08586b76 [file] [log] [blame]
Skip Wonnellcf4b15a2017-08-15 21:18:04 -05001<?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"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4 <parent>
5 <groupId>org.openecomp.appc</groupId>
6 <artifactId>appc-directed-graph</artifactId>
7 <version>1.1.0-SNAPSHOT</version>
8 </parent>
9
10 <modelVersion>4.0.0</modelVersion>
11 <packaging>pom</packaging>
12 <groupId>org.openecomp.appc</groupId>
13 <artifactId>appc-dgraph</artifactId>
14 <version>1.1.0-SNAPSHOT</version>
15
16 <name>APPC DG</name>
17 <description>APPC DG Module</description>
18
19 <properties>
20 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
21 <odl.mdsal.version>2.1.1-Boron-SR1</odl.mdsal.version>
22 <odl.controller.mdsal.version>1.4.1-Boron-SR1</odl.controller.mdsal.version>
23 <openecomp.sdnc.sli.version>1.1.0</openecomp.sdnc.sli.version>
24 <openecomp.sdnc.dblib.version>1.1.0</openecomp.sdnc.dblib.version>
25 <openecomp.sdnc.sql-resource.version>1.1.0</openecomp.sdnc.sql-resource.version>
26 </properties>
27
28
29 <dependencyManagement>
30 <dependencies>
31 <dependency>
32 <groupId>org.openecomp.sdnctl</groupId>
33 <artifactId>appc-dg-provider</artifactId>
34 <version>${project.version}</version>
35 </dependency>
36
37 <!-- OpenEcomp -->
38 <dependency>
39 <groupId>org.openecomp.sdnc.core</groupId>
40 <artifactId>sli-provider</artifactId>
41 </dependency>
42
43 <dependency>
44 <groupId>org.openecomp.sdnc.core</groupId>
45 <artifactId>dblib-provider</artifactId>
46 <version>${sdnctl.dblib.version}</version>
47 </dependency>
48 </dependencies>
49 </dependencyManagement>
50
51 <profiles>
52 <profile>
53 <id>default</id>
54 <activation>
55 <activeByDefault>true</activeByDefault>
56 </activation>
57 <modules>
58 <module>provider</module>
59 </modules>
60 </profile>
61 </profiles>
62
63</project>