Dan Timoney | c3342a0 | 2017-09-05 20:33:51 -0400 | [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.sdnc.northbound</groupId> |
| 7 | <artifactId>sdnc-northbound</artifactId> |
| 8 | <version>1.2.0-SNAPSHOT</version> |
| 9 | </parent> |
| 10 | |
| 11 | <groupId>org.onap.sdnc.northbound</groupId> |
| 12 | <artifactId>generic-resource-api</artifactId> |
| 13 | <version>1.2.0-SNAPSHOT</version> |
| 14 | <packaging>pom</packaging> |
| 15 | |
| 16 | <properties> |
| 17 | <feature-name>generic-resource-api</feature-name> |
| 18 | </properties> |
| 19 | <modules> |
| 20 | <module>model</module> |
| 21 | <module>features</module> |
| 22 | <module>installer</module> |
| 23 | <module>provider</module> |
| 24 | </modules> |
| 25 | |
| 26 | |
| 27 | <dependencyManagement> |
| 28 | <dependencies> |
| 29 | <dependency> |
| 30 | <groupId>org.onap.sdnc.northbound</groupId> |
| 31 | <artifactId>generic-resource-api.features</artifactId> |
| 32 | <version>${project.version}</version> |
| 33 | <type>xml</type> |
| 34 | <classifier>features</classifier> |
| 35 | </dependency> |
| 36 | <dependency> |
| 37 | <groupId>org.onap.sdnc.northbound</groupId> |
| 38 | <artifactId>generic-resource-api.model</artifactId> |
| 39 | <version>${project.version}</version> |
| 40 | </dependency> |
| 41 | <dependency> |
| 42 | <groupId>org.onap.sdnc.northbound</groupId> |
| 43 | <artifactId>generic-resource-api.provider</artifactId> |
| 44 | <version>${project.version}</version> |
| 45 | <type>xml</type> |
| 46 | <classifier>config</classifier> |
| 47 | </dependency> |
| 48 | <dependency> |
| 49 | <groupId>org.onap.sdnc.northbound</groupId> |
| 50 | <artifactId>generic-resource-api.provider</artifactId> |
| 51 | <version>${project.version}</version> |
| 52 | </dependency> |
| 53 | </dependencies> |
| 54 | </dependencyManagement> |
| 55 | </project> |