Deleting missing vnf-list entry cause infiniteLoop
[sdnc/northbound.git] / vnfapi / provider / pom.xml
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     <parent>
5         <artifactId>vnfapi</artifactId>
6         <groupId>org.onap.sdnc.northbound</groupId>
7         <version>1.3.0-SNAPSHOT</version>
8     </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>
24
25         </plugins>
26     </build>
27
28     <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>
63
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
93         <dependency>
94             <groupId>junit</groupId>
95             <artifactId>junit</artifactId>
96             <version>${junit.version}</version>
97             <scope>test</scope>
98         </dependency>
99         <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>
114     </dependencies>
115 </project>