Moved MD-SAL openflow utility classes from net-virt-providers to its own Utility...
[netvirt.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.controller.sal.binding.api,
88                             org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819,
89                             org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.nodes,
90                             org.opendaylight.yangtools.yang.binding,
91                             org.apache.felix.dm,
92                             org.slf4j,
93                             org.osgi.framework,
94                             *
95                         </Import-Package>
96                         <Embed-Dependency>utils.mdsal-openflow;type=!pom;inline=false</Embed-Dependency>
97                         <Embed-Transitive>true</Embed-Transitive>
98                         <Bundle-Activator>org.opendaylight.ovsdb.openstack.netvirt.providers.Activator</Bundle-Activator>
99                     </instructions>
100                 </configuration>
101             </plugin>
102             <plugin>
103                 <groupId>org.apache.maven.plugins</groupId>
104                 <artifactId>maven-checkstyle-plugin</artifactId>
105             </plugin>
106             <plugin>
107                 <groupId>org.apache.maven.plugins</groupId>
108                 <artifactId>maven-failsafe-plugin</artifactId>
109             </plugin>
110             <plugin>
111                 <groupId>org.apache.maven.plugins</groupId>
112                 <artifactId>maven-surefire-plugin</artifactId>
113             </plugin>
114             <plugin>
115                 <groupId>org.jacoco</groupId>
116                 <artifactId>jacoco-maven-plugin</artifactId>
117             </plugin>
118         </plugins>
119     </build>
120 </project>