blob: 9ed0ac73c179cfb981d403901a3b3397a6f42e29 [file] [log] [blame]
Dan Timoney10b6a722018-02-22 17:22:31 -06001<?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/xsd/maven-4.0.0.xsd">
4 <modelVersion>4.0.0</modelVersion>
5
6 <parent>
7 <groupId>org.onap.ccsdk.parent</groupId>
8 <artifactId>single-feature-parent</artifactId>
Timoney, Dan (dt5972)751d50b2018-06-06 14:03:24 -04009 <version>1.1.0-SNAPSHOT</version>
Dan Timoney10b6a722018-02-22 17:22:31 -060010 <relativePath />
11 </parent>
12
13 <groupId>org.onap.ccsdk.sli.northbound</groupId>
14 <artifactId>ccsdk-dataChange</artifactId>
Timoney, Dan (dt5972)751d50b2018-06-06 14:03:24 -040015 <version>0.3.0-SNAPSHOT</version>
Dan Timoney10b6a722018-02-22 17:22:31 -060016 <packaging>feature</packaging>
17
18 <name>ccsdk-sli-northbound :: dataChange :: ${project.artifactId}</name>
19
Timoney, Dan (dt5972)a63bbe22018-06-18 10:49:42 -040020 <dependencyManagement>
21 <dependencies>
22 <dependency>
23 <groupId>org.opendaylight.mdsal.model</groupId>
24 <artifactId>mdsal-model-artifacts</artifactId>
25 <version>${odl.mdsal.model.version}</version>
26 <type>pom</type>
27 <scope>import</scope>
28 </dependency>
29 <dependency>
30 <groupId>org.opendaylight.controller</groupId>
31 <artifactId>mdsal-artifacts</artifactId>
32 <version>${odl.mdsal.version}</version>
33 <type>pom</type>
34 <scope>import</scope>
35 </dependency>
36 </dependencies>
37 </dependencyManagement>
38
Dan Timoney10b6a722018-02-22 17:22:31 -060039 <dependencies>
Timoney, Dan (dt5972)a63bbe22018-06-18 10:49:42 -040040
Dan Timoney10b6a722018-02-22 17:22:31 -060041 <dependency>
42 <groupId>org.onap.ccsdk.sli.core</groupId>
43 <artifactId>ccsdk-sli</artifactId>
44 <version>${ccsdk.sli.core.version}</version>
45 <type>xml</type>
46 <classifier>features</classifier>
47 </dependency>
48 <dependency>
49 <groupId>${project.groupId}</groupId>
50 <artifactId>dataChange-model</artifactId>
51 <version>${project.version}</version>
52 </dependency>
53 <dependency>
54 <groupId>${project.groupId}</groupId>
55 <artifactId>dataChange-provider</artifactId>
56 <version>${project.version}</version>
57 </dependency>
58
59 </dependencies>
60</project>