Arun S. Yerra | 4318ad1 | 2017-09-11 18:57:40 -0700 | [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/maven-v4_0_0.xsd"> |
| 3 | <parent> |
| 4 | <groupId>org.onap.ccsdk.sli.plugins</groupId> |
| 5 | <artifactId>ccsdk-sli-plugins</artifactId> |
| 6 | <version>0.1.0-SNAPSHOT</version> |
| 7 | </parent> |
| 8 | |
| 9 | <modelVersion>4.0.0</modelVersion> |
| 10 | <packaging>pom</packaging> |
| 11 | |
| 12 | <groupId>org.onap.ccsdk.sli.plugins</groupId> |
| 13 | <artifactId>fabric-discovery-plugin</artifactId> |
| 14 | <version>0.1.0-SNAPSHOT</version> |
| 15 | |
| 16 | <name>Fabric Discovery Plugin</name> |
| 17 | <description>This plugin will populate information about the devices within network fabric into SDNC database</description> |
| 18 | |
| 19 | <dependencyManagement> |
| 20 | <dependencies> |
| 21 | <dependency> |
| 22 | <groupId>org.onap.ccsdk.sli.plugins</groupId> |
| 23 | <artifactId>fabric-discovery-plugin-features</artifactId> |
| 24 | <classifier>features</classifier> |
| 25 | <type>xml</type> |
| 26 | <version>${project.version}</version> |
| 27 | </dependency> |
| 28 | <dependency> |
| 29 | <groupId>org.onap.ccsdk.sli.plugins</groupId> |
| 30 | <artifactId>fabric-discovery-plugin-provider</artifactId> |
| 31 | <version>${project.version}</version> |
| 32 | </dependency> |
| 33 | </dependencies> |
| 34 | </dependencyManagement> |
| 35 | |
| 36 | <modules> |
| 37 | <module>provider</module> |
| 38 | <module>features</module> |
| 39 | <module>installer</module> |
| 40 | </modules> |
| 41 | </project> |
| 42 | |