Dan Timoney | 131cb46 | 2018-02-01 16:57:00 -0500 | [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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | |
| 5 | <parent> |
| 6 | <groupId>org.onap.ccsdk.parent</groupId> |
| 7 | <artifactId>single-feature-parent</artifactId> |
Timoney, Dan (dt5972) | 6f247b9 | 2018-05-17 18:30:51 -0400 | [diff] [blame^] | 8 | <version>1.0.2</version> |
Dan Timoney | 131cb46 | 2018-02-01 16:57:00 -0500 | [diff] [blame] | 9 | <relativePath/> |
| 10 | </parent> |
| 11 | |
| 12 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 13 | <artifactId>ccsdk-sliapi</artifactId> |
Timoney, Dan (dt5972) | bafe8e8 | 2018-04-29 18:45:28 -0400 | [diff] [blame] | 14 | <version>0.2.2-SNAPSHOT</version> |
Dan Timoney | 131cb46 | 2018-02-01 16:57:00 -0500 | [diff] [blame] | 15 | <packaging>feature</packaging> |
| 16 | |
| 17 | <name>ccsdk-sli-core :: sliapi :: ${project.artifactId}</name> |
| 18 | |
| 19 | <dependencyManagement> |
| 20 | <dependencies> |
| 21 | <dependency> |
| 22 | <groupId>org.opendaylight.mdsal.model</groupId> |
| 23 | <artifactId>mdsal-model-artifacts</artifactId> |
| 24 | <version>0.11.1</version> |
| 25 | <type>pom</type> |
| 26 | <scope>import</scope> |
| 27 | </dependency> |
| 28 | <dependency> |
| 29 | <groupId>org.opendaylight.controller</groupId> |
| 30 | <artifactId>mdsal-artifacts</artifactId> |
| 31 | <version>1.6.1</version> |
| 32 | <type>pom</type> |
| 33 | <scope>import</scope> |
| 34 | </dependency> |
| 35 | </dependencies> |
| 36 | </dependencyManagement> |
| 37 | <dependencies> |
| 38 | <dependency> |
| 39 | <groupId>org.opendaylight.controller</groupId> |
| 40 | <artifactId>odl-mdsal-broker</artifactId> |
| 41 | <type>xml</type> |
| 42 | <classifier>features</classifier> |
| 43 | </dependency> |
| 44 | |
| 45 | <dependency> |
| 46 | <groupId>${project.groupId}</groupId> |
| 47 | <artifactId>ccsdk-sli</artifactId> |
| 48 | <version>${project.version}</version> |
| 49 | <type>xml</type> |
| 50 | <classifier>features</classifier> |
| 51 | </dependency> |
| 52 | |
| 53 | <dependency> |
| 54 | <groupId>${project.groupId}</groupId> |
| 55 | <artifactId>sliapi-provider</artifactId> |
| 56 | <version>${project.version}</version> |
| 57 | </dependency> |
| 58 | |
| 59 | </dependencies> |
| 60 | </project> |