Bump to odlparent-6.0.1/yangtools-4.0.2/mdsal-5.0.4
[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>library</artifactId>
57       <version>${project.version}</version>
58     </dependency>
59     <dependency>
60       <groupId>${project.groupId}</groupId>
61       <artifactId>schema.openvswitch</artifactId>
62       <version>${project.version}</version>
63     </dependency>
64     <dependency>
65       <groupId>org.opendaylight.ovsdb</groupId>
66       <artifactId>utils.yang-utils</artifactId>
67       <version>${project.version}</version>
68     </dependency>
69     <dependency>
70       <groupId>com.google.guava</groupId>
71       <artifactId>guava</artifactId>
72     </dependency>
73     <dependency>
74       <groupId>org.opendaylight.infrautils</groupId>
75       <artifactId>ready-api</artifactId>
76       <version>1.7.0-SNAPSHOT</version>
77     </dependency>
78     <!-- external dependencies -->
79     <dependency>
80       <groupId>org.opendaylight.infrautils</groupId>
81       <artifactId>diagstatus-api</artifactId>
82       <version>1.7.0-SNAPSHOT</version>
83     </dependency>
84     <dependency>
85       <groupId>javax.inject</groupId>
86       <artifactId>javax.inject</artifactId>
87       <optional>true</optional>
88     </dependency>
89     <dependency>
90       <groupId>org.apache.aries.blueprint</groupId>
91       <artifactId>blueprint-maven-plugin-annotation</artifactId>
92       <optional>true</optional>
93     </dependency>
94     <dependency>
95       <groupId>javax.annotation</groupId>
96       <artifactId>javax.annotation-api</artifactId>
97       <optional>true</optional>
98     </dependency>
99
100     <!-- testing dependencies -->
101     <dependency>
102       <groupId>org.sonarsource.java</groupId>
103       <artifactId>sonar-jacoco-listeners</artifactId>
104       <version>${sonar-jacoco-listeners.version}</version>
105       <scope>test</scope>
106     </dependency>
107     <dependency>
108       <groupId>org.slf4j</groupId>
109       <artifactId>slf4j-simple</artifactId>
110       <scope>test</scope>
111     </dependency>
112
113     <dependency>
114       <groupId>org.mockito</groupId>
115       <artifactId>mockito-core</artifactId>
116       <version>2.25.1</version>
117       <scope>test</scope>
118     </dependency>
119     <dependency>
120       <groupId>org.powermock</groupId>
121       <artifactId>powermock-api-mockito2</artifactId>
122       <scope>test</scope>
123     </dependency>
124     <dependency>
125       <groupId>org.powermock</groupId>
126       <artifactId>powermock-module-junit4</artifactId>
127       <scope>test</scope>
128     </dependency>
129     <dependency>
130       <groupId>org.powermock</groupId>
131       <artifactId>powermock-reflect</artifactId>
132       <scope>test</scope>
133     </dependency>
134     <dependency>
135       <groupId>org.powermock</groupId>
136       <artifactId>powermock-core</artifactId>
137       <scope>test</scope>
138     </dependency>
139     <dependency>
140       <groupId>org.opendaylight.controller</groupId>
141       <artifactId>sal-binding-broker-impl</artifactId>
142       <scope>test</scope>
143     </dependency>
144     <dependency>
145       <groupId>org.opendaylight.controller</groupId>
146       <artifactId>sal-binding-broker-impl</artifactId>
147       <type>test-jar</type>
148       <scope>test</scope>
149     </dependency>
150     <dependency>
151       <groupId>org.opendaylight.ovsdb</groupId>
152       <artifactId>utils.southbound-utils</artifactId>
153       <version>${project.version}</version>
154       <scope>test</scope>
155     </dependency>
156   </dependencies>
157   <build>
158     <plugins>
159       <plugin>
160         <groupId>org.apache.aries.blueprint</groupId>
161         <artifactId>blueprint-maven-plugin</artifactId>
162         <configuration>
163           <scanPaths>org.opendaylight.ovsdb.southbound</scanPaths>
164         </configuration>
165       </plugin>
166       <plugin>
167         <groupId>org.apache.felix</groupId>
168         <artifactId>maven-bundle-plugin</artifactId>
169         <configuration>
170           <instructions>
171             <Export-Package>
172               org.opendaylight.ovsdb.southbound,
173               org.opendaylight.ovsdb.southbound.*,
174               org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.southbound.impl.rev141210.*</Export-Package>
175           </instructions>
176         </configuration>
177       </plugin>
178       <plugin>
179         <groupId>org.apache.maven.plugins</groupId>
180         <artifactId>maven-surefire-plugin</artifactId>
181         <configuration>
182           <properties>
183             <property>
184               <name>listener</name>
185               <value>org.sonar.java.jacoco.JUnitListener</value>
186             </property>
187           </properties>
188         </configuration>
189       </plugin>
190       <plugin>
191         <groupId>org.codehaus.mojo</groupId>
192         <artifactId>build-helper-maven-plugin</artifactId>
193         <executions>
194           <execution>
195             <id>attach-artifacts</id>
196             <goals>
197               <goal>attach-artifact</goal>
198             </goals>
199             <phase>package</phase>
200             <configuration>
201               <artifacts>
202                 <artifact>
203                   <file>${project.build.directory}/classes/initial/southbound.cfg</file>
204                   <type>cfg</type>
205                   <classifier>config</classifier>
206                 </artifact>
207               </artifacts>
208             </configuration>
209           </execution>
210         </executions>
211       </plugin>
212     </plugins>
213   </build>
214
215   <!--
216       Maven Site Configuration
217
218       The following configuration is necessary for maven-site-plugin to
219       correctly identify the correct deployment path for OpenDaylight Maven
220       sites.
221   -->
222   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
223
224   <distributionManagement>
225     <site>
226       <id>opendaylight-site</id>
227       <url>${nexus.site.url}/${project.artifactId}/</url>
228     </site>
229   </distributionManagement>
230 </project>