aboutsummaryrefslogtreecommitdiffstats
path: root/appc-directed-graph/appc-dgraph/pom.xml
blob: d421dd3cb49c36b60036ca659381719c08586b76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
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>