blob: 35021adb720dcfda37eb257139a0c7c63bef5bb0 [file] [log] [blame]
Dan Timoney1b476832017-02-15 15:09:44 -05001<?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">
Marcus G K Williamseb2d4022017-08-30 19:32:32 -07003 <modelVersion>4.0.0</modelVersion>
4 <parent>
5 <artifactId>vnfapi</artifactId>
6 <groupId>org.onap.sdnc.northbound</groupId>
Jessica Wagantall1240ccf2017-11-20 11:04:57 -08007 <version>1.3.0-SNAPSHOT</version>
Marcus G K Williamseb2d4022017-08-30 19:32:32 -07008 </parent>
9 <artifactId>vnfapi-provider</artifactId>
10 <packaging>bundle</packaging>
11 <build>
12 <plugins>
13 <plugin>
14 <groupId>org.apache.felix</groupId>
15 <artifactId>maven-bundle-plugin</artifactId>
16 <extensions>true</extensions>
17 <configuration>
18 <instructions>
19 <Export-Package>org.opendaylight.controller.config.yang.config.vnfapi_provider.impl</Export-Package>
20 <Import-Package>*</Import-Package>
21 </instructions>
22 </configuration>
23 </plugin>
Dan Timoneydd3f7402017-10-12 16:01:06 -040024
Marcus G K Williamseb2d4022017-08-30 19:32:32 -070025 </plugins>
26 </build>
Dan Timoney1b476832017-02-15 15:09:44 -050027
Marcus G K Williamseb2d4022017-08-30 19:32:32 -070028 <dependencies>
29 <dependency>
30 <groupId>org.onap.sdnc.northbound</groupId>
31 <artifactId>vnfapi-model</artifactId>
32 </dependency>
33 <dependency>
34 <groupId>org.opendaylight.controller</groupId>
35 <artifactId>config-api</artifactId>
36 <version>${odl.controller.config.api.version}</version>
37 </dependency>
38 <dependency>
39 <groupId>org.opendaylight.controller</groupId>
40 <artifactId>sal-binding-config</artifactId>
41 <version>${odl.mdsal.version}</version>
42 </dependency>
43 <dependency>
44 <groupId>org.opendaylight.controller</groupId>
45 <artifactId>sal-binding-api</artifactId>
46 <version>${odl.mdsal.version}</version>
47 </dependency>
48 <dependency>
49 <groupId>org.opendaylight.controller</groupId>
50 <artifactId>sal-common-util</artifactId>
51 <version>${odl.mdsal.version}</version>
52 </dependency>
53 <dependency>
54 <groupId>org.onap.ccsdk.sli.core</groupId>
55 <artifactId>sli-common</artifactId>
56 <version>${sdnctl.sli.version}</version>
57 </dependency>
58 <dependency>
59 <groupId>org.onap.ccsdk.sli.core</groupId>
60 <artifactId>sli-provider</artifactId>
61 <version>${sdnctl.sli.version}</version>
62 </dependency>
Joey Sullivan69453d72017-11-22 21:22:02 +000063
64 <dependency>
65 <groupId>org.opendaylight.controller</groupId>
66 <artifactId>sal-test-model</artifactId>
67 <version>${odl.mdsal.version}</version>
68 <scope>test</scope>
69 </dependency>
70 <dependency>
71 <groupId>org.opendaylight.netconf</groupId>
72 <artifactId>sal-rest-connector</artifactId>
73 <version>${odl.mdsal.version}</version>
74 <scope>test</scope>
75 </dependency>
76
77 <dependency>
78 <groupId>org.opendaylight.controller</groupId>
79 <artifactId>sal-binding-broker-impl</artifactId>
80 <version>${odl.mdsal.version}</version>
81 <scope>test</scope>
82 </dependency>
83 <dependency>
84 <groupId>org.opendaylight.controller</groupId>
85 <artifactId>sal-binding-broker-impl</artifactId>
86 <version>${odl.mdsal.version}</version>
87 <type>test-jar</type>
88 <classifier>tests</classifier>
89 <scope>test</scope>
90 </dependency>
91
92
Marcus G K Williamseb2d4022017-08-30 19:32:32 -070093 <dependency>
94 <groupId>junit</groupId>
95 <artifactId>junit</artifactId>
96 <version>${junit.version}</version>
97 <scope>test</scope>
98 </dependency>
Hao Kuangf9b1d0f2017-10-13 11:16:57 -040099 <dependency>
100 <groupId>org.mockito</groupId>
101 <artifactId>mockito-core</artifactId>
102 <scope>test</scope>
103 </dependency>
104 <dependency>
105 <groupId>org.powermock</groupId>
106 <artifactId>powermock-api-mockito</artifactId>
107 <scope>test</scope>
108 </dependency>
109 <dependency>
110 <groupId>org.powermock</groupId>
111 <artifactId>powermock-module-junit4</artifactId>
112 <scope>test</scope>
113 </dependency>
Marcus G K Williamseb2d4022017-08-30 19:32:32 -0700114 </dependencies>
Dan Timoney1b476832017-02-15 15:09:44 -0500115</project>