Dan Timoney | 8a3f1ea | 2018-02-16 17:12:41 -0500 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Timoney, Dan (dt5972) | 21ec655 | 2019-01-08 12:14:12 -0500 | [diff] [blame^] | 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"> |
Dan Timoney | 8a3f1ea | 2018-02-16 17:12:41 -0500 | [diff] [blame] | 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) | 21ec655 | 2019-01-08 12:14:12 -0500 | [diff] [blame^] | 8 | <version>1.2.0</version> |
| 9 | <relativePath/> |
Dan Timoney | 8a3f1ea | 2018-02-16 17:12:41 -0500 | [diff] [blame] | 10 | </parent> |
| 11 | |
| 12 | <groupId>org.onap.ccsdk.sli.adaptors</groupId> |
| 13 | <artifactId>ccsdk-resource-assignment</artifactId> |
Timoney, Dan (dt5972) | 74e0d6c | 2018-10-23 08:30:01 -0400 | [diff] [blame] | 14 | <version>0.4.0-SNAPSHOT</version> |
Dan Timoney | 8a3f1ea | 2018-02-16 17:12:41 -0500 | [diff] [blame] | 15 | <packaging>feature</packaging> |
| 16 | |
| 17 | <name>ccsdk-sli-adaptors :: resource-assignment :: ${project.artifactId}</name> |
Timoney, Dan (dt5972) | d00cb60 | 2018-09-25 19:51:37 -0400 | [diff] [blame] | 18 | |
Timoney, Dan (dt5972) | d00cb60 | 2018-09-25 19:51:37 -0400 | [diff] [blame] | 19 | |
Timoney, Dan (dt5972) | 21ec655 | 2019-01-08 12:14:12 -0500 | [diff] [blame^] | 20 | <properties> |
| 21 | <ccsdk.sli.adaptors.version>${project.version}</ccsdk.sli.adaptors.version> |
| 22 | </properties> |
| 23 | |
Timoney, Dan (dt5972) | be72a3c | 2018-06-15 18:25:23 -0400 | [diff] [blame] | 24 | <dependencyManagement> |
| 25 | <dependencies> |
| 26 | <dependency> |
| 27 | <groupId>org.opendaylight.controller</groupId> |
| 28 | <artifactId>mdsal-artifacts</artifactId> |
| 29 | <version>${odl.mdsal.version}</version> |
| 30 | <type>pom</type> |
| 31 | <scope>import</scope> |
| 32 | </dependency> |
| 33 | <dependency> |
| 34 | <groupId>org.opendaylight.mdsal.model</groupId> |
| 35 | <artifactId>mdsal-model-artifacts</artifactId> |
| 36 | <version>${odl.mdsal.model.version}</version> |
| 37 | <type>pom</type> |
| 38 | <scope>import</scope> |
| 39 | </dependency> |
| 40 | </dependencies> |
| 41 | </dependencyManagement> |
Dan Timoney | 8a3f1ea | 2018-02-16 17:12:41 -0500 | [diff] [blame] | 42 | <dependencies> |
Dan Timoney | 8a3f1ea | 2018-02-16 17:12:41 -0500 | [diff] [blame] | 43 | |
| 44 | <dependency> |
| 45 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 46 | <artifactId>ccsdk-sli</artifactId> |
Smokowski, Kevin (ks6305) | f62f418 | 2018-11-06 16:34:46 +0000 | [diff] [blame] | 47 | <version>${ccsdk.sli.core.version}</version> |
Dan Timoney | 8a3f1ea | 2018-02-16 17:12:41 -0500 | [diff] [blame] | 48 | <type>xml</type> |
| 49 | <classifier>features</classifier> |
Smokowski, Kevin (ks6305) | f62f418 | 2018-11-06 16:34:46 +0000 | [diff] [blame] | 50 | <scope>provided</scope> |
Dan Timoney | 8a3f1ea | 2018-02-16 17:12:41 -0500 | [diff] [blame] | 51 | </dependency> |
| 52 | |
| 53 | <dependency> |
| 54 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 55 | <artifactId>ccsdk-dblib</artifactId> |
Timoney, Dan (dt5972) | 69c4c5b | 2018-04-20 14:25:32 -0400 | [diff] [blame] | 56 | <version>${ccsdk.sli.core.version}</version> |
Dan Timoney | 8a3f1ea | 2018-02-16 17:12:41 -0500 | [diff] [blame] | 57 | <type>xml</type> |
| 58 | <classifier>features</classifier> |
Smokowski, Kevin (ks6305) | f62f418 | 2018-11-06 16:34:46 +0000 | [diff] [blame] | 59 | <scope>provided</scope> |
Dan Timoney | 8a3f1ea | 2018-02-16 17:12:41 -0500 | [diff] [blame] | 60 | </dependency> |
| 61 | |
| 62 | <dependency> |
| 63 | <groupId>${project.groupId}</groupId> |
| 64 | <artifactId>resource-assignment-provider</artifactId> |
| 65 | <version>${project.version}</version> |
| 66 | </dependency> |
| 67 | |
Timoney, Dan (dt5972) | be72a3c | 2018-06-15 18:25:23 -0400 | [diff] [blame] | 68 | |
Dan Timoney | 8a3f1ea | 2018-02-16 17:12:41 -0500 | [diff] [blame] | 69 | </dependencies> |
| 70 | </project> |