Incrementing versions by 0.1.0 for post-Helium master branch
[netvirt.git] / openstack / net-virt / 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     <groupId>org.opendaylight.ovsdb</groupId>
6     <artifactId>commons</artifactId>
7     <version>1.3.0-SNAPSHOT</version>
8     <relativePath>../../commons/parent</relativePath>
9   </parent>
10
11   <artifactId>openstack.net-virt</artifactId>
12   <version>1.1.0-SNAPSHOT</version>
13   <name>Opendaylight OVS Network Virtualization</name>
14   <packaging>bundle</packaging>
15
16   <dependencies>
17     <dependency>
18       <groupId>org.opendaylight.controller</groupId>
19       <artifactId>networkconfig.neutron</artifactId>
20     </dependency>
21     <dependency>
22       <groupId>org.opendaylight.controller</groupId>
23       <artifactId>sal</artifactId>
24     </dependency>
25     <dependency>
26       <groupId>org.opendaylight.controller</groupId>
27       <artifactId>switchmanager</artifactId>
28     </dependency>
29     <dependency>
30       <groupId>org.opendaylight.ovsdb</groupId>
31       <artifactId>library</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>org.opendaylight.ovsdb</groupId>
35       <artifactId>plugin</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>org.opendaylight.ovsdb</groupId>
39       <artifactId>schema.openvswitch</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>junit</groupId>
43       <artifactId>junit</artifactId>
44       <scope>test</scope>
45     </dependency>
46   </dependencies>
47   <build>
48     <plugins>
49       <plugin>
50         <groupId>org.apache.felix</groupId>
51         <artifactId>maven-bundle-plugin</artifactId>
52         <version>2.4.0</version>
53         <extensions>true</extensions>
54         <configuration>
55           <instructions>
56             <Import-Package>
57               org.opendaylight.controller.networkconfig.neutron,
58               org.opendaylight.controller.switchmanager,
59               org.opendaylight.controller.sal.core,
60               org.opendaylight.controller.sal.utils,
61               org.opendaylight.ovsdb.plugin.api,
62               org.opendaylight.ovsdb.lib.notation,
63               org.apache.felix.dm,
64               org.slf4j,
65               org.osgi.framework,
66               *</Import-Package>
67               <Export-Package>
68                   org.opendaylight.ovsdb.openstack.netvirt.api
69               </Export-Package>
70             <Bundle-Activator>org.opendaylight.ovsdb.openstack.netvirt.Activator</Bundle-Activator>
71           </instructions>
72         </configuration>
73       </plugin>
74       <plugin>
75         <groupId>org.apache.maven.plugins</groupId>
76         <artifactId>maven-checkstyle-plugin</artifactId>
77       </plugin>
78       <plugin>
79         <groupId>org.apache.maven.plugins</groupId>
80         <artifactId>maven-failsafe-plugin</artifactId>
81       </plugin>
82       <plugin>
83         <groupId>org.apache.maven.plugins</groupId>
84         <artifactId>maven-surefire-plugin</artifactId>
85       </plugin>
86       <plugin>
87         <groupId>org.jacoco</groupId>
88         <artifactId>jacoco-maven-plugin</artifactId>
89       </plugin>
90     </plugins>
91   </build>
92
93   <scm>
94     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
95     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
96     <tag>HEAD</tag>
97     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
98   </scm>
99 </project>