Optimize the OvsdbPortUpdateCommand during the ODL reboot/Ovsdb connection
[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 <!--
4 Copyright © 2014, 2016 Cisco Systems, Inc. and others.  All rights reserved.
5
6 This program and the accompanying materials are made available under the
7 terms of the Eclipse Public License v1.0 which accompanies this distribution,
8 and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <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">
11
12   <parent>
13     <groupId>org.opendaylight.ovsdb</groupId>
14     <artifactId>ovsdb-binding-parent</artifactId>
15     <version>1.10.0-SNAPSHOT</version>
16     <relativePath>../../commons/binding-parent</relativePath>
17   </parent>
18
19   <modelVersion>4.0.0</modelVersion>
20   <groupId>org.opendaylight.ovsdb</groupId>
21   <artifactId>southbound-impl</artifactId>
22   <version>1.10.0-SNAPSHOT</version>
23   <packaging>bundle</packaging>
24   <!-- <name> formatting is used by autorelease to parse and notify projects on
25        build failure. Please do not modify this unless you have a good reason. -->
26   <name>ODL :: ovsdb :: ${project.artifactId}</name>
27   <properties>
28     <sonar.jacoco.itReportPath>../southbound-it/target/jacoco-it.exec</sonar.jacoco.itReportPath>
29   </properties>
30
31   <dependencies>
32     <dependency>
33       <groupId>org.opendaylight.controller</groupId>
34       <artifactId>sal-binding-api</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>org.opendaylight.mdsal</groupId>
38       <artifactId>mdsal-dom-api</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>org.opendaylight.mdsal</groupId>
42       <artifactId>mdsal-binding-dom-codec</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>org.opendaylight.mdsal</groupId>
46       <artifactId>mdsal-eos-binding-api</artifactId>
47     </dependency>
48     <!-- project specific dependencies -->
49     <dependency>
50       <groupId>${project.groupId}</groupId>
51       <artifactId>southbound-api</artifactId>
52       <version>${project.version}</version>
53     </dependency>
54     <dependency>
55       <groupId>${project.groupId}</groupId>
56       <artifactId>utils.mdsal-utils</artifactId>
57       <version>${project.version}</version>
58     </dependency>
59     <dependency>
60       <groupId>${project.groupId}</groupId>
61       <artifactId>library</artifactId>
62       <version>${project.version}</version>
63     </dependency>
64     <dependency>
65       <groupId>${project.groupId}</groupId>
66       <artifactId>schema.openvswitch</artifactId>
67       <version>${project.version}</version>
68     </dependency>
69     <dependency>
70       <groupId>org.opendaylight.ovsdb</groupId>
71       <artifactId>utils.yang-utils</artifactId>
72       <version>${project.version}</version>
73     </dependency>
74     <dependency>
75       <groupId>com.google.guava</groupId>
76       <artifactId>guava</artifactId>
77     </dependency>
78     <dependency>
79       <groupId>org.opendaylight.infrautils</groupId>
80       <artifactId>ready-api</artifactId>
81       <version>1.7.0-SNAPSHOT</version>
82     </dependency>
83     <dependency>
84       <groupId>org.opendaylight.serviceutils</groupId>
85       <artifactId>upgrade</artifactId>
86       <version>0.5.0-SNAPSHOT</version>
87     </dependency>
88     <!-- external dependencies -->
89     <dependency>
90       <groupId>org.opendaylight.infrautils</groupId>
91       <artifactId>diagstatus-api</artifactId>
92       <version>1.7.0-SNAPSHOT</version>
93     </dependency>
94     <dependency>
95       <groupId>javax.inject</groupId>
96       <artifactId>javax.inject</artifactId>
97       <optional>true</optional>
98     </dependency>
99     <dependency>
100       <groupId>org.apache.aries.blueprint</groupId>
101       <artifactId>blueprint-maven-plugin-annotation</artifactId>
102       <optional>true</optional>
103     </dependency>
104     <dependency>
105       <groupId>javax.annotation</groupId>
106       <artifactId>javax.annotation-api</artifactId>
107       <optional>true</optional>
108     </dependency>
109
110     <!-- testing dependencies -->
111     <dependency>
112       <groupId>org.sonarsource.java</groupId>
113       <artifactId>sonar-jacoco-listeners</artifactId>
114       <version>${sonar-jacoco-listeners.version}</version>
115       <scope>test</scope>
116     </dependency>
117     <dependency>
118       <groupId>org.slf4j</groupId>
119       <artifactId>slf4j-simple</artifactId>
120       <scope>test</scope>
121     </dependency>
122
123     <dependency>
124       <groupId>org.powermock</groupId>
125       <artifactId>powermock-api-mockito2</artifactId>
126     </dependency>
127     <dependency>
128       <groupId>org.powermock</groupId>
129       <artifactId>powermock-module-junit4</artifactId>
130     </dependency>
131     <dependency>
132       <groupId>org.opendaylight.controller</groupId>
133       <artifactId>sal-binding-broker-impl</artifactId>
134       <scope>test</scope>
135     </dependency>
136     <dependency>
137       <groupId>org.opendaylight.controller</groupId>
138       <artifactId>sal-binding-broker-impl</artifactId>
139       <type>test-jar</type>
140       <scope>test</scope>
141     </dependency>
142     <dependency>
143       <groupId>org.opendaylight.ovsdb</groupId>
144       <artifactId>utils.southbound-utils</artifactId>
145       <version>${project.version}</version>
146       <scope>test</scope>
147     </dependency>
148   </dependencies>
149   <build>
150     <plugins>
151       <plugin>
152         <groupId>org.apache.aries.blueprint</groupId>
153         <artifactId>blueprint-maven-plugin</artifactId>
154         <configuration>
155           <scanPaths>org.opendaylight.ovsdb.southbound</scanPaths>
156         </configuration>
157       </plugin>
158       <plugin>
159         <groupId>org.apache.felix</groupId>
160         <artifactId>maven-bundle-plugin</artifactId>
161         <configuration>
162           <instructions>
163             <Export-Package>
164               org.opendaylight.ovsdb.southbound,
165               org.opendaylight.ovsdb.southbound.*,
166               org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.southbound.impl.rev141210.*</Export-Package>
167           </instructions>
168         </configuration>
169       </plugin>
170       <plugin>
171         <groupId>org.apache.maven.plugins</groupId>
172         <artifactId>maven-surefire-plugin</artifactId>
173         <configuration>
174           <properties>
175             <property>
176               <name>listener</name>
177               <value>org.sonar.java.jacoco.JUnitListener</value>
178             </property>
179           </properties>
180         </configuration>
181       </plugin>
182       <plugin>
183         <groupId>org.codehaus.mojo</groupId>
184         <artifactId>build-helper-maven-plugin</artifactId>
185         <executions>
186           <execution>
187             <id>attach-artifacts</id>
188             <goals>
189               <goal>attach-artifact</goal>
190             </goals>
191             <phase>package</phase>
192             <configuration>
193               <artifacts>
194                 <artifact>
195                   <file>${project.build.directory}/classes/initial/southbound.cfg</file>
196                   <type>cfg</type>
197                   <classifier>config</classifier>
198                 </artifact>
199               </artifacts>
200             </configuration>
201           </execution>
202         </executions>
203       </plugin>
204     </plugins>
205   </build>
206
207   <!--
208       Maven Site Configuration
209
210       The following configuration is necessary for maven-site-plugin to
211       correctly identify the correct deployment path for OpenDaylight Maven
212       sites.
213   -->
214   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
215
216   <distributionManagement>
217     <site>
218       <id>opendaylight-site</id>
219       <url>${nexus.site.url}/${project.artifactId}/</url>
220     </site>
221   </distributionManagement>
222 </project>