Ganesh Chandrasekaran | d6a56cd | 2018-07-19 11:17:06 +0900 | [diff] [blame^] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 5 | <modelVersion>4.0.0</modelVersion> |
| 6 | |
| 7 | <parent> |
| 8 | <groupId>org.onap.ccsdk.parent</groupId> |
| 9 | <artifactId>single-feature-parent</artifactId> |
| 10 | <version>1.1.0-SNAPSHOT</version> |
| 11 | <relativePath /> |
| 12 | </parent> |
| 13 | |
| 14 | <groupId>org.onap.ccsdk.sli.plugins</groupId> |
| 15 | <artifactId>ccsdk-sshapi-call-node</artifactId> |
| 16 | <version>0.3.0-SNAPSHOT</version> |
| 17 | <packaging>feature</packaging> |
| 18 | |
| 19 | <name>ccsdk-sli-plugins :: sshapi-call-node :: ${project.artifactId}</name> |
| 20 | |
| 21 | <dependencyManagement> |
| 22 | <dependencies> |
| 23 | <dependency> |
| 24 | <groupId>org.opendaylight.mdsal.model</groupId> |
| 25 | <artifactId>mdsal-model-artifacts</artifactId> |
| 26 | <version>${odl.mdsal.model.version}</version> |
| 27 | <type>pom</type> |
| 28 | <scope>import</scope> |
| 29 | </dependency> |
| 30 | <dependency> |
| 31 | <groupId>org.opendaylight.controller</groupId> |
| 32 | <artifactId>mdsal-artifacts</artifactId> |
| 33 | <version>${odl.mdsal.version}</version> |
| 34 | <type>pom</type> |
| 35 | <scope>import</scope> |
| 36 | </dependency> |
| 37 | </dependencies> |
| 38 | </dependencyManagement> |
| 39 | |
| 40 | <dependencies> |
| 41 | |
| 42 | <dependency> |
| 43 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 44 | <artifactId>ccsdk-sli</artifactId> |
| 45 | <version>${ccsdk.sli.core.version}</version> |
| 46 | <type>xml</type> |
| 47 | <classifier>features</classifier> |
| 48 | </dependency> |
| 49 | <dependency> |
| 50 | <groupId>${project.groupId}</groupId> |
| 51 | <artifactId>sshapi-call-node-provider</artifactId> |
| 52 | <version>${project.version}</version> |
| 53 | </dependency> |
| 54 | </dependencies> |
| 55 | </project> |