ea53ce9f6285d9fc14002d999e7efb42395221c6
[ovsdb.git] / openstack / net-virt-providers / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5     <parent>
6         <artifactId>commons</artifactId>
7         <groupId>org.opendaylight.ovsdb</groupId>
8         <version>1.2.0-SNAPSHOT</version>
9         <relativePath>../../commons/parent/pom.xml</relativePath>
10     </parent>
11     <modelVersion>4.0.0</modelVersion>
12
13     <artifactId>openstack.net-virt-providers</artifactId>
14     <version>1.0.0-SNAPSHOT</version>
15     <packaging>bundle</packaging>
16
17     <dependencies>
18         <dependency>
19             <groupId>org.opendaylight.controller</groupId>
20             <artifactId>sal</artifactId>
21         </dependency>
22         <dependency>
23             <groupId>org.opendaylight.controller</groupId>
24             <artifactId>forwardingrulesmanager</artifactId>
25         </dependency>
26         <dependency>
27             <groupId>org.opendaylight.controller</groupId>
28             <artifactId>sal-binding-api</artifactId>
29         </dependency>
30         <dependency>
31             <groupId>org.opendaylight.controller</groupId>
32             <artifactId>sal-common-util</artifactId>
33         </dependency>
34         <dependency>
35             <groupId>org.opendaylight.controller</groupId>
36             <artifactId>switchmanager</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>org.opendaylight.controller.model</groupId>
40             <artifactId>model-flow-base</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>org.opendaylight.controller.model</groupId>
44             <artifactId>model-flow-management</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>org.opendaylight.controller.model</groupId>
48             <artifactId>model-flow-service</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>org.opendaylight.controller.model</groupId>
52             <artifactId>model-inventory</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>org.opendaylight.yangtools</groupId>
56             <artifactId>yang-binding</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>org.opendaylight.ovsdb</groupId>
60             <artifactId>plugin</artifactId>
61         </dependency>
62         <dependency>
63             <groupId>org.opendaylight.ovsdb</groupId>
64             <artifactId>openstack.net-virt</artifactId>
65         </dependency>
66     </dependencies>
67
68     <build>
69         <plugins>
70             <plugin>
71                 <groupId>org.apache.felix</groupId>
72                 <artifactId>maven-bundle-plugin</artifactId>
73                 <version>2.3.6</version>
74                 <extensions>true</extensions>
75                 <configuration>
76                     <instructions>
77                         <Import-Package>
78                             org.opendaylight.controller.switchmanager,
79                             org.opendaylight.controller.forwardingrulesmanager,
80                             org.opendaylight.controller.sal.core,
81                             org.opendaylight.controller.sal.utils,
82                             org.opendaylight.controller.sal.action,
83                             org.opendaylight.ovsdb.plugin,
84                             org.opendaylight.ovsdb.lib.notation,
85                             org.opendaylight.controller.sal.binding.api,
86                             org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819,
87                             org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.nodes,
88                             org.opendaylight.yangtools.yang.binding,
89                             org.apache.felix.dm,
90                             org.slf4j,
91                             org.osgi.framework,
92                             *
93                         </Import-Package>
94                         <Bundle-Activator>org.opendaylight.ovsdb.openstack.netvirt.providers.Activator</Bundle-Activator>
95                     </instructions>
96                 </configuration>
97             </plugin>
98             <plugin>
99                 <groupId>org.apache.maven.plugins</groupId>
100                 <artifactId>maven-checkstyle-plugin</artifactId>
101             </plugin>
102             <plugin>
103                 <groupId>org.apache.maven.plugins</groupId>
104                 <artifactId>maven-failsafe-plugin</artifactId>
105             </plugin>
106             <plugin>
107                 <groupId>org.apache.maven.plugins</groupId>
108                 <artifactId>maven-surefire-plugin</artifactId>
109             </plugin>
110             <plugin>
111                 <groupId>org.jacoco</groupId>
112                 <artifactId>jacoco-maven-plugin</artifactId>
113             </plugin>
114         </plugins>
115     </build>
116 </project>