Merge topics 'mdsal_ovsd_db', 'mdsal_ovsdb_sb'
[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.apache.commons</groupId>
19       <artifactId>commons-lang3</artifactId>
20     </dependency>
21     <dependency>
22       <groupId>org.apache.felix</groupId>
23       <artifactId>org.apache.felix.dependencymanager</artifactId>
24     </dependency>
25     <dependency>
26       <groupId>org.osgi</groupId>
27       <artifactId>org.osgi.core</artifactId>
28     </dependency>
29     <dependency>
30       <groupId>org.slf4j</groupId>
31       <artifactId>slf4j-api</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>com.google.guava</groupId>
35       <artifactId>guava</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>org.opendaylight.controller</groupId>
39       <artifactId>networkconfig.neutron</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>org.opendaylight.controller</groupId>
43       <artifactId>sal</artifactId>
44     </dependency>
45     <dependency>
46       <groupId>org.opendaylight.controller</groupId>
47       <artifactId>switchmanager</artifactId>
48     </dependency>
49     <dependency>
50       <groupId>org.opendaylight.ovsdb</groupId>
51       <artifactId>library</artifactId>
52     </dependency>
53     <dependency>
54       <groupId>org.opendaylight.ovsdb</groupId>
55       <artifactId>plugin</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.ovsdb</groupId>
59       <artifactId>schema.openvswitch</artifactId>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.ovsdb</groupId>
63       <artifactId>utils.config</artifactId>
64     </dependency>
65     <dependency>
66       <groupId>org.mockito</groupId>
67       <artifactId>mockito-core</artifactId>
68     </dependency>
69     <dependency>
70       <groupId>junit</groupId>
71       <artifactId>junit</artifactId>
72       <scope>test</scope>
73     </dependency>
74   </dependencies>
75   <build>
76     <plugins>
77       <plugin>
78         <groupId>org.apache.felix</groupId>
79         <artifactId>maven-bundle-plugin</artifactId>
80         <version>2.4.0</version>
81         <extensions>true</extensions>
82         <configuration>
83           <instructions>
84             <Embed-Dependency>utils.config;type=!pom;inline=false</Embed-Dependency>
85             <Embed-Transitive>true</Embed-Transitive>
86             <Export-Package>
87                   org.opendaylight.ovsdb.openstack.netvirt.api
88               </Export-Package>
89             <Bundle-Activator>org.opendaylight.ovsdb.openstack.netvirt.Activator</Bundle-Activator>
90           </instructions>
91         </configuration>
92       </plugin>
93       <plugin>
94         <groupId>org.apache.maven.plugins</groupId>
95         <artifactId>maven-checkstyle-plugin</artifactId>
96       </plugin>
97       <plugin>
98         <groupId>org.apache.maven.plugins</groupId>
99         <artifactId>maven-failsafe-plugin</artifactId>
100       </plugin>
101       <plugin>
102         <groupId>org.apache.maven.plugins</groupId>
103         <artifactId>maven-surefire-plugin</artifactId>
104       </plugin>
105       <plugin>
106         <groupId>org.jacoco</groupId>
107         <artifactId>jacoco-maven-plugin</artifactId>
108       </plugin>
109     </plugins>
110   </build>
111
112   <scm>
113     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
114     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
115     <tag>HEAD</tag>
116     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
117   </scm>
118 </project>