8aacaec7b96fb13255665e9554d46e0e1966c358
[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     <name>Opendaylight OVS Network Virtualization Providers</name>
16     <packaging>bundle</packaging>
17
18     <dependencies>
19         <dependency>
20             <groupId>org.opendaylight.controller</groupId>
21             <artifactId>sal</artifactId>
22         </dependency>
23         <dependency>
24             <groupId>org.opendaylight.controller</groupId>
25             <artifactId>forwardingrulesmanager</artifactId>
26         </dependency>
27         <dependency>
28             <groupId>org.opendaylight.controller</groupId>
29             <artifactId>sal-binding-api</artifactId>
30         </dependency>
31         <dependency>
32             <groupId>org.opendaylight.controller</groupId>
33             <artifactId>sal-common-util</artifactId>
34         </dependency>
35         <dependency>
36             <groupId>org.opendaylight.controller</groupId>
37             <artifactId>switchmanager</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>org.opendaylight.controller.model</groupId>
41             <artifactId>model-flow-base</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>org.opendaylight.controller.model</groupId>
45             <artifactId>model-flow-service</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>org.opendaylight.controller.model</groupId>
49             <artifactId>model-inventory</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>org.opendaylight.yangtools</groupId>
53             <artifactId>yang-binding</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>org.opendaylight.ovsdb</groupId>
57             <artifactId>plugin</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>org.opendaylight.ovsdb</groupId>
61             <artifactId>openstack.net-virt</artifactId>
62         </dependency>
63         <dependency>
64           <groupId>org.opendaylight.ovsdb</groupId>
65           <artifactId>utils.mdsal-openflow</artifactId>
66           <version>1.0.0-SNAPSHOT</version>
67         </dependency>
68     </dependencies>
69
70     <build>
71         <plugins>
72             <plugin>
73                 <groupId>org.apache.felix</groupId>
74                 <artifactId>maven-bundle-plugin</artifactId>
75                 <version>2.3.6</version>
76                 <extensions>true</extensions>
77                 <configuration>
78                     <instructions>
79                         <Import-Package>
80                             org.opendaylight.controller.switchmanager,
81                             org.opendaylight.controller.forwardingrulesmanager,
82                             org.opendaylight.controller.sal.core,
83                             org.opendaylight.controller.sal.utils,
84                             org.opendaylight.controller.sal.action,
85                             org.opendaylight.ovsdb.plugin.api,
86                             org.opendaylight.ovsdb.lib.notation,
87                             org.opendaylight.ovs.nx.sal.*;resolution:="optional",
88                             org.opendaylight.yang.gen.v1.urn.opendaylight.ovs.nx.*;resolution:="optional",
89                             org.opendaylight.openflowplugin.*;resolution:="optional",
90                             org.opendaylight.yang.gen.v1.urn.opendaylight.openflowjava.nx.*;resolution:="optional",
91                             org.opendaylight.yang.gen.v1.urn.opendaylight.openflowplugin.extension.*;resolution:="optional",
92                             org.opendaylight.controller.sal.binding.api,
93                             org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819,
94                             org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.nodes,
95                             org.opendaylight.yangtools.yang.binding,
96                             org.apache.felix.dm,
97                             org.slf4j,
98                             org.osgi.framework,
99                             *
100                         </Import-Package>
101                         <Embed-Dependency>utils.mdsal-openflow;type=!pom;inline=false</Embed-Dependency>
102                         <Embed-Transitive>true</Embed-Transitive>
103                         <Bundle-Activator>org.opendaylight.ovsdb.openstack.netvirt.providers.Activator</Bundle-Activator>
104                     </instructions>
105                 </configuration>
106             </plugin>
107             <plugin>
108                 <groupId>org.apache.maven.plugins</groupId>
109                 <artifactId>maven-checkstyle-plugin</artifactId>
110             </plugin>
111             <plugin>
112                 <groupId>org.apache.maven.plugins</groupId>
113                 <artifactId>maven-failsafe-plugin</artifactId>
114             </plugin>
115             <plugin>
116                 <groupId>org.apache.maven.plugins</groupId>
117                 <artifactId>maven-surefire-plugin</artifactId>
118             </plugin>
119             <plugin>
120                 <groupId>org.jacoco</groupId>
121                 <artifactId>jacoco-maven-plugin</artifactId>
122             </plugin>
123         </plugins>
124     </build>
125 </project>