Merge "Add JUnit testing for ConfigurationServiceImpl 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     </dependency>
74     <dependency>
75      <groupId>org.powermock</groupId>
76       <artifactId>powermock-module-junit4</artifactId>
77     </dependency>
78     <dependency>
79       <groupId>org.powermock</groupId>
80       <artifactId>powermock-api-mockito</artifactId>
81     </dependency>
82     <dependency>
83       <groupId>junit</groupId>
84       <artifactId>junit</artifactId>
85       <scope>test</scope>
86     </dependency>
87   </dependencies>
88   <build>
89     <plugins>
90       <plugin>
91         <groupId>org.apache.felix</groupId>
92         <artifactId>maven-bundle-plugin</artifactId>
93         <version>2.4.0</version>
94         <extensions>true</extensions>
95         <configuration>
96           <instructions>
97             <Embed-Dependency>utils.config,utils.mdsal-node;type=!pom;inline=false</Embed-Dependency>
98             <Embed-Transitive>true</Embed-Transitive>
99             <Export-Package>
100                   org.opendaylight.ovsdb.openstack.netvirt.api
101               </Export-Package>
102             <Bundle-Activator>org.opendaylight.ovsdb.openstack.netvirt.Activator</Bundle-Activator>
103           </instructions>
104         </configuration>
105       </plugin>
106       <plugin>
107         <groupId>org.apache.maven.plugins</groupId>
108         <artifactId>maven-checkstyle-plugin</artifactId>
109       </plugin>
110       <plugin>
111         <groupId>org.apache.maven.plugins</groupId>
112         <artifactId>maven-failsafe-plugin</artifactId>
113       </plugin>
114       <plugin>
115         <groupId>org.apache.maven.plugins</groupId>
116         <artifactId>maven-surefire-plugin</artifactId>
117       </plugin>
118       <plugin>
119         <groupId>org.jacoco</groupId>
120         <artifactId>jacoco-maven-plugin</artifactId>
121       </plugin>
122     </plugins>
123   </build>
124
125   <scm>
126     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
127     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
128     <tag>HEAD</tag>
129     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
130   </scm>
131
132 </project>