Pull in PowerMock from odlparent
[ovsdb.git] / southbound / southbound-impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: --><!--
3 Copyright (c) 2014 Cisco Systems, 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" 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">
10
11   <parent>
12     <groupId>org.opendaylight.controller</groupId>
13     <artifactId>config-parent</artifactId>
14     <version>0.5.0-SNAPSHOT</version>
15     <relativePath/>
16   </parent>
17
18   <modelVersion>4.0.0</modelVersion>
19   <groupId>org.opendaylight.ovsdb</groupId>
20   <artifactId>southbound-impl</artifactId>
21   <version>1.3.0-SNAPSHOT</version>
22   <packaging>bundle</packaging>
23   <description>The OVSDB Plugin integration project is a project for OpenDaylight that will implement the Open vSwitch Database RFC 7047 management protocol allowing the Southbound configuration of vSwitches and a network virtualization implementation.</description>
24   <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
25   <licenses>
26     <license>
27       <name>Eclipse Public License v1.0</name>
28       <url>http://www.eclipse.org/legal/epl-v10.html</url>
29     </license>
30   </licenses>
31   <developers>
32     <developer>
33       <name>Sam Hague</name>
34       <email>shague@gmail.com</email>
35       <url>https://github.com/shague</url>
36     </developer>
37   </developers>
38   <scm>
39     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
40     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
41     <tag>HEAD</tag>
42     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
43   </scm>
44
45   <properties>
46     <sonar.jacoco.itReportPath>../southbound-it/target/jacoco-it.exec</sonar.jacoco.itReportPath>
47   </properties>
48
49   <dependencies>
50     <!-- project specific dependencies -->
51     <dependency>
52       <groupId>${project.groupId}</groupId>
53       <artifactId>southbound-api</artifactId>
54       <version>${project.version}</version>
55     </dependency>
56     <dependency>
57       <groupId>${project.groupId}</groupId>
58       <artifactId>library</artifactId>
59       <version>${project.version}</version>
60     </dependency>
61     <dependency>
62       <groupId>${project.groupId}</groupId>
63       <artifactId>schema.openvswitch</artifactId>
64       <version>${project.version}</version>
65     </dependency>
66     <dependency>
67       <groupId>com.google.guava</groupId>
68       <artifactId>guava</artifactId>
69     </dependency>
70     <!-- external dependencies -->
71     <dependency>
72       <groupId>org.codehaus.sonar-plugins.java</groupId>
73       <artifactId>sonar-jacoco-listeners</artifactId>
74       <version>${sonar-jacoco-listeners.version}</version>
75       <scope>test</scope>
76     </dependency>
77     <dependency>
78       <groupId>org.slf4j</groupId>
79       <artifactId>slf4j-simple</artifactId>
80       <scope>test</scope>
81     </dependency>
82     <!-- testing dependencies -->
83     <dependency>
84       <groupId>junit</groupId>
85       <artifactId>junit</artifactId>
86       <scope>test</scope>
87     </dependency>
88     <dependency>
89       <groupId>org.powermock</groupId>
90       <artifactId>powermock-api-mockito</artifactId>
91       <scope>test</scope>
92     </dependency>
93     <dependency>
94       <groupId>org.powermock</groupId>
95       <artifactId>powermock-module-junit4</artifactId>
96       <scope>test</scope>
97     </dependency>
98     <dependency>
99       <groupId>org.opendaylight.controller</groupId>
100       <artifactId>sal-binding-broker-impl</artifactId>
101       <type>test-jar</type>
102       <scope>test</scope>
103     </dependency>
104   </dependencies>
105   <build>
106     <plugins>
107       <plugin>
108         <groupId>org.apache.felix</groupId>
109         <artifactId>maven-bundle-plugin</artifactId>
110         <configuration>
111           <instructions>
112             <Export-Package>
113               org.opendaylight.ovsdb.southbound,
114               org.opendaylight.ovsdb.southbound.*,
115               org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.southbound.impl.rev141210.*</Export-Package>
116           </instructions>
117         </configuration>
118       </plugin>
119       <plugin>
120         <groupId>org.apache.maven.plugins</groupId>
121         <artifactId>maven-checkstyle-plugin</artifactId>
122         <configuration>
123           <failsOnError>true</failsOnError>
124         </configuration>
125       </plugin>
126       <plugin>
127         <groupId>org.apache.maven.plugins</groupId>
128         <artifactId>maven-surefire-plugin</artifactId>
129         <configuration>
130           <properties>
131             <property>
132               <name>listener</name>
133               <value>org.sonar.java.jacoco.JUnitListener</value>
134             </property>
135           </properties>
136         </configuration>
137       </plugin>
138     </plugins>
139   </build>
140 </project>