Bump versions by 0.1.0 for next dev cycle
[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 © 2014, 2016 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.6.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.4.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   <licenses>
25     <license>
26       <name>Eclipse Public License v1.0</name>
27       <url>http://www.eclipse.org/legal/epl-v10.html</url>
28     </license>
29   </licenses>
30   <developers>
31     <developer>
32       <name>Sam Hague</name>
33       <email>shague@gmail.com</email>
34       <url>https://github.com/shague</url>
35     </developer>
36   </developers>
37   <scm>
38     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
39     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
40     <tag>HEAD</tag>
41     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
42   </scm>
43
44   <properties>
45     <sonar.jacoco.itReportPath>../southbound-it/target/jacoco-it.exec</sonar.jacoco.itReportPath>
46   </properties>
47
48   <dependencies>
49     <!-- project specific dependencies -->
50     <dependency>
51       <groupId>${project.groupId}</groupId>
52       <artifactId>southbound-api</artifactId>
53       <version>${project.version}</version>
54     </dependency>
55     <dependency>
56       <groupId>${project.groupId}</groupId>
57       <artifactId>library</artifactId>
58       <version>${project.version}</version>
59     </dependency>
60     <dependency>
61       <groupId>${project.groupId}</groupId>
62       <artifactId>schema.openvswitch</artifactId>
63       <version>${project.version}</version>
64     </dependency>
65     <dependency>
66       <groupId>org.opendaylight.ovsdb</groupId>
67       <artifactId>utils.yang-utils</artifactId>
68       <version>${project.version}</version>
69     </dependency>
70     <dependency>
71       <groupId>com.google.guava</groupId>
72       <artifactId>guava</artifactId>
73     </dependency>
74     <!-- external dependencies -->
75     <dependency>
76       <groupId>org.codehaus.sonar-plugins.java</groupId>
77       <artifactId>sonar-jacoco-listeners</artifactId>
78       <version>${sonar-jacoco-listeners.version}</version>
79       <scope>test</scope>
80     </dependency>
81     <dependency>
82       <groupId>org.slf4j</groupId>
83       <artifactId>slf4j-simple</artifactId>
84       <scope>test</scope>
85     </dependency>
86     <!-- testing dependencies -->
87     <dependency>
88       <groupId>junit</groupId>
89       <artifactId>junit</artifactId>
90       <scope>test</scope>
91     </dependency>
92     <dependency>
93       <groupId>org.powermock</groupId>
94       <artifactId>powermock-api-mockito</artifactId>
95       <scope>test</scope>
96     </dependency>
97     <dependency>
98       <groupId>org.powermock</groupId>
99       <artifactId>powermock-module-junit4</artifactId>
100       <scope>test</scope>
101     </dependency>
102     <dependency>
103       <groupId>org.opendaylight.controller</groupId>
104       <artifactId>sal-binding-broker-impl</artifactId>
105       <type>test-jar</type>
106       <scope>test</scope>
107     </dependency>
108     <dependency>
109       <groupId>org.opendaylight.ovsdb</groupId>
110       <artifactId>utils.southbound-utils</artifactId>
111       <version>${project.version}</version>
112       <scope>test</scope>
113     </dependency>
114   </dependencies>
115   <build>
116     <plugins>
117       <plugin>
118         <groupId>org.apache.felix</groupId>
119         <artifactId>maven-bundle-plugin</artifactId>
120         <configuration>
121           <instructions>
122             <Export-Package>
123               org.opendaylight.ovsdb.southbound,
124               org.opendaylight.ovsdb.southbound.*,
125               org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.southbound.impl.rev141210.*</Export-Package>
126           </instructions>
127         </configuration>
128       </plugin>
129       <plugin>
130         <groupId>org.apache.maven.plugins</groupId>
131         <artifactId>maven-checkstyle-plugin</artifactId>
132         <configuration>
133           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
134         </configuration>
135       </plugin>
136       <plugin>
137         <groupId>org.apache.maven.plugins</groupId>
138         <artifactId>maven-surefire-plugin</artifactId>
139         <configuration>
140           <properties>
141             <property>
142               <name>listener</name>
143               <value>org.sonar.java.jacoco.JUnitListener</value>
144             </property>
145           </properties>
146         </configuration>
147       </plugin>
148     </plugins>
149   </build>
150
151   <!--
152       Maven Site Configuration
153
154       The following configuration is necessary for maven-site-plugin to
155       correctly identify the correct deployment path for OpenDaylight Maven
156       sites.
157   -->
158   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
159
160   <distributionManagement>
161     <site>
162       <id>opendaylight-site</id>
163       <url>${nexus.site.url}/${project.artifactId}/</url>
164     </site>
165   </distributionManagement>
166 </project>