Merge "Fixes an issue in induvidual security rule update, when remote SG is selected."
[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     <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     <!-- project specific dependencies -->
52     <dependency>
53       <groupId>${project.groupId}</groupId>
54       <artifactId>southbound-api</artifactId>
55       <version>${project.version}</version>
56     </dependency>
57     <dependency>
58       <groupId>${project.groupId}</groupId>
59       <artifactId>library</artifactId>
60       <version>${project.version}</version>
61     </dependency>
62     <dependency>
63       <groupId>${project.groupId}</groupId>
64       <artifactId>schema.openvswitch</artifactId>
65       <version>${project.version}</version>
66     </dependency>
67     <dependency>
68       <groupId>com.google.guava</groupId>
69       <artifactId>guava</artifactId>
70     </dependency>
71     <!-- external dependencies -->
72     <dependency>
73       <groupId>org.codehaus.sonar-plugins.java</groupId>
74       <artifactId>sonar-jacoco-listeners</artifactId>
75       <version>${sonar-jacoco-listeners.version}</version>
76       <scope>test</scope>
77     </dependency>
78     <dependency>
79       <groupId>org.slf4j</groupId>
80       <artifactId>slf4j-simple</artifactId>
81       <scope>test</scope>
82     </dependency>
83     <!-- testing dependencies -->
84     <dependency>
85       <groupId>junit</groupId>
86       <artifactId>junit</artifactId>
87       <scope>test</scope>
88     </dependency>
89     <dependency>
90       <groupId>org.powermock</groupId>
91       <artifactId>powermock-api-mockito</artifactId>
92       <version>${powermock.version}</version>
93       <scope>test</scope>
94     </dependency>
95     <dependency>
96       <groupId>org.powermock</groupId>
97       <artifactId>powermock-module-junit4</artifactId>
98       <version>${powermock.version}</version>
99       <scope>test</scope>
100     </dependency>
101   </dependencies>
102   <build>
103     <plugins>
104       <plugin>
105         <groupId>org.apache.felix</groupId>
106         <artifactId>maven-bundle-plugin</artifactId>
107         <configuration>
108           <instructions>
109             <Export-Package>
110               org.opendaylight.ovsdb.southbound,
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     </plugins>
136   </build>
137 </project>