Dan Timoney | 10b6a72 | 2018-02-22 17:22:31 -0600 | [diff] [blame] | 1 | <?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) | 751d50b | 2018-06-06 14:03:24 -0400 | [diff] [blame] | 9 | <version>1.1.0-SNAPSHOT</version> |
Dan Timoney | 10b6a72 | 2018-02-22 17:22:31 -0600 | [diff] [blame] | 10 | <relativePath /> |
| 11 | </parent> |
| 12 | |
| 13 | <groupId>org.onap.ccsdk.sli.northbound</groupId> |
| 14 | <artifactId>ccsdk-dataChange</artifactId> |
Timoney, Dan (dt5972) | 751d50b | 2018-06-06 14:03:24 -0400 | [diff] [blame] | 15 | <version>0.3.0-SNAPSHOT</version> |
Dan Timoney | 10b6a72 | 2018-02-22 17:22:31 -0600 | [diff] [blame] | 16 | <packaging>feature</packaging> |
| 17 | |
| 18 | <name>ccsdk-sli-northbound :: dataChange :: ${project.artifactId}</name> |
| 19 | |
Timoney, Dan (dt5972) | a63bbe2 | 2018-06-18 10:49:42 -0400 | [diff] [blame^] | 20 | <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 Timoney | 10b6a72 | 2018-02-22 17:22:31 -0600 | [diff] [blame] | 39 | <dependencies> |
Timoney, Dan (dt5972) | a63bbe2 | 2018-06-18 10:49:42 -0400 | [diff] [blame^] | 40 | |
Dan Timoney | 10b6a72 | 2018-02-22 17:22:31 -0600 | [diff] [blame] | 41 | <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> |