blob: 23375b54b933f7f9c6cab9d066e531f8fba0be64 [file] [log] [blame]
Dan Timoneyc3342a02017-09-05 20:33:51 -04001<?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>generic-resource-api</artifactId>
8 <version>1.2.0-SNAPSHOT</version>
9 </parent>
10
Dan Timoney03575372017-10-13 12:07:01 -040011 <artifactId>generic-resource-api-provider</artifactId>
Dan Timoneyc3342a02017-09-05 20:33:51 -040012 <packaging>bundle</packaging>
13
14 <dependencies>
15 <dependency>
16 <groupId>org.onap.sdnc.northbound</groupId>
Dan Timoney03575372017-10-13 12:07:01 -040017 <artifactId>generic-resource-api-model</artifactId>
Dan Timoneyc3342a02017-09-05 20:33:51 -040018 </dependency>
19 <dependency>
20 <groupId>org.opendaylight.controller</groupId>
21 <artifactId>config-api</artifactId>
22 <version>${odl.controller.config.api.version}</version>
23 </dependency>
24 <dependency>
25 <groupId>org.opendaylight.controller</groupId>
26 <artifactId>sal-binding-config</artifactId>
27 <version>${odl.mdsal.version}</version>
28 </dependency>
29 <dependency>
30 <groupId>org.opendaylight.controller</groupId>
31 <artifactId>sal-binding-api</artifactId>
32 <version>${odl.mdsal.version}</version>
33 </dependency>
34 <dependency>
35 <groupId>org.opendaylight.controller</groupId>
36 <artifactId>sal-common-util</artifactId>
37 <version>${odl.mdsal.version}</version>
38 </dependency>
39
Dan Timoneyc3342a02017-09-05 20:33:51 -040040 <dependency>
41 <groupId>org.opendaylight.controller</groupId>
42 <artifactId>sal-test-model</artifactId>
43 <version>${odl.mdsal.version}</version>
44 <scope>test</scope>
45 </dependency>
46 <dependency>
47 <groupId>org.opendaylight.netconf</groupId>
48 <artifactId>sal-rest-connector</artifactId>
49 <version>${odl.mdsal.version}</version>
50 <scope>test</scope>
51 </dependency>
52
53 <dependency>
54 <groupId>org.opendaylight.controller</groupId>
55 <artifactId>sal-binding-broker-impl</artifactId>
56 <version>${odl.mdsal.version}</version>
57 <scope>test</scope>
58 </dependency>
59 <dependency>
60 <groupId>org.opendaylight.controller</groupId>
61 <artifactId>sal-binding-broker-impl</artifactId>
ramu.n9fc33452017-09-25 18:16:12 +053062 <version>${odl.mdsal.version}</version>
Dan Timoneyc3342a02017-09-05 20:33:51 -040063 <type>test-jar</type>
64 <classifier>tests</classifier>
65 <scope>test</scope>
66 </dependency>
ramu.n9fc33452017-09-25 18:16:12 +053067
Dan Timoneyc3342a02017-09-05 20:33:51 -040068 <dependency>
69 <groupId>org.apache.commons</groupId>
70 <artifactId>commons-lang3</artifactId>
71 </dependency>
72
73 <dependency>
74 <groupId>org.onap.ccsdk.sli.core</groupId>
75 <artifactId>sli-common</artifactId>
76 <version>${sdnctl.sli.version}</version>
77 </dependency>
ramu.n9fc33452017-09-25 18:16:12 +053078 <dependency>
79 <groupId>org.onap.ccsdk.sli.core</groupId>
80 <artifactId>sli-provider</artifactId>
81 <version>${sdnctl.sli.version}</version>
82 </dependency>
83
Gaurav Agrawala6c41a32017-09-21 18:42:52 +053084 <dependency>
85 <groupId>junit</groupId>
86 <artifactId>junit</artifactId>
87 <version>${junit.version}</version>
88 <scope>test</scope>
89 </dependency>
ramu.n9fc33452017-09-25 18:16:12 +053090 <dependency>
91 <groupId>org.mockito</groupId>
92 <artifactId>mockito-core</artifactId>
93 <version>${mockito.version}</version>
94 <scope>test</scope>
95 </dependency>
Dan Timoneyc3342a02017-09-05 20:33:51 -040096 </dependencies>
97
98 <build>
99 <plugins>
Dan Timoney03575372017-10-13 12:07:01 -0400100
Dan Timoneyc3342a02017-09-05 20:33:51 -0400101 <plugin>
102 <groupId>org.apache.felix</groupId>
103 <artifactId>maven-bundle-plugin</artifactId>
104 <extensions>true</extensions>
105 <configuration>
106 <instructions>
107 <Export-Package>org.opendaylight.controller.config.yang.config.generic-resource-api_provider.impl</Export-Package>
108 <Import-Package>*</Import-Package>
109 </instructions>
110 </configuration>
111 </plugin>
Dan Timoney03575372017-10-13 12:07:01 -0400112
113
Dan Timoneyc3342a02017-09-05 20:33:51 -0400114 </plugins>
115 </build>
116</project>