Merge "Add JUnit testing for AbstractEvent class."
[ovsdb.git] / openstack / net-virt / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (C) 2014 Red Hat, Inc. and others. All rights reserved.
4
5 This program and the accompanying materials are made available under the
6 terms of the Eclipse Public License v1.0 which accompanies this distribution,
7 and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <project xmlns="http://maven.apache.org/POM/4.0.0"
10          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12   <modelVersion>4.0.0</modelVersion>
13
14   <parent>
15     <groupId>org.opendaylight.ovsdb</groupId>
16     <artifactId>commons</artifactId>
17     <version>1.3.0-SNAPSHOT</version>
18     <relativePath>../../commons/parent</relativePath>
19   </parent>
20
21   <artifactId>openstack.net-virt</artifactId>
22   <version>1.1.0-SNAPSHOT</version>
23   <packaging>bundle</packaging>
24
25   <dependencies>
26     <dependency>
27       <groupId>org.apache.commons</groupId>
28       <artifactId>commons-lang3</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>org.apache.felix</groupId>
32       <artifactId>org.apache.felix.dependencymanager</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>org.osgi</groupId>
36       <artifactId>org.osgi.core</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>org.slf4j</groupId>
40       <artifactId>slf4j-api</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>com.google.guava</groupId>
44       <artifactId>guava</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>org.opendaylight.neutron</groupId>
48       <artifactId>neutron-spi</artifactId>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.ovsdb</groupId>
52       <artifactId>library</artifactId>
53     </dependency>
54     <dependency>
55       <groupId>org.opendaylight.ovsdb</groupId>
56       <artifactId>plugin</artifactId>
57     </dependency>
58     <dependency>
59       <groupId>org.opendaylight.ovsdb</groupId>
60       <artifactId>schema.openvswitch</artifactId>
61     </dependency>
62     <dependency>
63       <groupId>org.opendaylight.ovsdb</groupId>
64       <artifactId>utils.config</artifactId>
65     </dependency>
66     <dependency>
67       <groupId>org.opendaylight.ovsdb</groupId>
68       <artifactId>utils.mdsal-node</artifactId>
69     </dependency>
70     <dependency>
71       <groupId>org.mockito</groupId>
72       <artifactId>mockito-core</artifactId>
73       <scope>test</scope>
74     </dependency>
75     <dependency>
76       <groupId>org.powermock</groupId>
77       <artifactId>powermock-core</artifactId>
78       <version>${powermock.version}</version>
79       <scope>test</scope>
80     </dependency>
81     <dependency>
82       <groupId>org.powermock</groupId>
83       <artifactId>powermock-module-junit4</artifactId>
84       <scope>test</scope>
85     </dependency>
86     <dependency>
87       <groupId>org.powermock</groupId>
88       <artifactId>powermock-api-mockito</artifactId>
89       <scope>test</scope>
90     </dependency>
91     <dependency>
92       <groupId>junit</groupId>
93       <artifactId>junit</artifactId>
94       <scope>test</scope>
95     </dependency>
96   </dependencies>
97   <build>
98     <plugins>
99       <plugin>
100         <groupId>org.apache.felix</groupId>
101         <artifactId>maven-bundle-plugin</artifactId>
102         <version>2.4.0</version>
103         <extensions>true</extensions>
104         <configuration>
105           <instructions>
106             <Embed-Dependency>utils.config,utils.mdsal-node;type=!pom;inline=false</Embed-Dependency>
107             <Embed-Transitive>true</Embed-Transitive>
108             <Export-Package>
109                   org.opendaylight.ovsdb.openstack.netvirt.api
110               </Export-Package>
111             <Bundle-Activator>org.opendaylight.ovsdb.openstack.netvirt.Activator</Bundle-Activator>
112           </instructions>
113         </configuration>
114       </plugin>
115       <plugin>
116         <groupId>org.apache.maven.plugins</groupId>
117         <artifactId>maven-checkstyle-plugin</artifactId>
118       </plugin>
119       <plugin>
120         <groupId>org.apache.maven.plugins</groupId>
121         <artifactId>maven-failsafe-plugin</artifactId>
122       </plugin>
123       <plugin>
124         <groupId>org.apache.maven.plugins</groupId>
125         <artifactId>maven-surefire-plugin</artifactId>
126       </plugin>
127       <plugin>
128         <groupId>org.jacoco</groupId>
129         <artifactId>jacoco-maven-plugin</artifactId>
130       </plugin>
131     </plugins>
132   </build>
133
134   <scm>
135     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
136     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
137     <tag>HEAD</tag>
138     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
139   </scm>
140
141 </project>