Merge "Adding code to test the all the supportted interfaces by OVS-DPDK [dpdk, dpdkr...
[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.4.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.2.1-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     <powermock.version>1.5.2</powermock.version>
47     <sonar.jacoco.itReportPath>../southbound-it/target/jacoco-it.exec</sonar.jacoco.itReportPath>
48   </properties>
49
50   <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>com.google.guava</groupId>
63       <artifactId>guava</artifactId>
64     </dependency>
65     <dependency>
66       <groupId>${project.groupId}</groupId>
67       <artifactId>schema.openvswitch</artifactId>
68       <version>${project.version}</version>
69     </dependency>
70     <dependency>
71       <groupId>org.opendaylight.controller</groupId>
72       <artifactId>sal-core-api</artifactId>
73     </dependency>
74     <dependency>
75       <groupId>junit</groupId>
76       <artifactId>junit</artifactId>
77       <scope>test</scope>
78     </dependency>
79     <dependency>
80       <groupId>org.slf4j</groupId>
81       <artifactId>slf4j-simple</artifactId>
82       <scope>test</scope>
83     </dependency>
84     <dependency>
85       <groupId>org.powermock</groupId>
86       <artifactId>powermock-api-mockito</artifactId>
87       <version>${powermock.version}</version>
88       <scope>test</scope>
89     </dependency>
90     <dependency>
91       <groupId>org.powermock</groupId>
92       <artifactId>powermock-module-junit4</artifactId>
93       <version>${powermock.version}</version>
94       <scope>test</scope>
95     </dependency>
96     <dependency>
97       <groupId>org.codehaus.sonar-plugins.java</groupId>
98       <artifactId>sonar-jacoco-listeners</artifactId>
99       <version>${sonar-jacoco-listeners.version}</version>
100       <scope>test</scope>
101     </dependency>
102   </dependencies>
103   <build>
104     <plugins>
105       <plugin>
106         <groupId>org.apache.felix</groupId>
107         <artifactId>maven-bundle-plugin</artifactId>
108         <configuration>
109           <instructions>
110             <Export-Package>
111               org.opendaylight.ovsdb.southbound.*,
112               org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.southbound.impl.rev141210.*</Export-Package>
113           </instructions>
114         </configuration>
115       </plugin>
116       <plugin>
117         <groupId>org.apache.maven.plugins</groupId>
118         <artifactId>maven-checkstyle-plugin</artifactId>
119         <configuration>
120           <failsOnError>true</failsOnError>
121         </configuration>
122       </plugin>
123       <plugin>
124         <groupId>org.apache.maven.plugins</groupId>
125         <artifactId>maven-surefire-plugin</artifactId>
126         <configuration>
127           <properties>
128             <property>
129               <name>listener</name>
130               <value>org.sonar.java.jacoco.JUnitListener</value>
131             </property>
132           </properties>
133         </configuration>
134       </plugin>
135       <plugin>
136         <groupId>org.jacoco</groupId>
137         <artifactId>jacoco-maven-plugin</artifactId>
138       </plugin>
139     </plugins>
140   </build>
141 </project>