Add binding-parent pom
[ovsdb.git] / utils / mdsal-utils / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2015, 2016 Red Hat, 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"
10          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12   <modelVersion>4.0.0</modelVersion>
13   <parent>
14     <groupId>org.opendaylight.ovsdb</groupId>
15     <artifactId>ovsdb-binding-parent</artifactId>
16     <version>1.7.0-SNAPSHOT</version>
17     <relativePath>../../commons/binding-parent</relativePath>
18   </parent>
19
20   <groupId>org.opendaylight.ovsdb</groupId>
21   <artifactId>utils.mdsal-utils</artifactId>
22   <version>1.7.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
28   <dependencies>
29     <dependency>
30       <groupId>org.opendaylight.controller</groupId>
31       <artifactId>sal-binding-api</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>org.opendaylight.ovsdb</groupId>
35       <artifactId>southbound-api</artifactId>
36       <version>${project.version}</version>
37     </dependency>
38
39     <!-- testing dependencies -->
40     <dependency>
41       <groupId>junit</groupId>
42       <artifactId>junit</artifactId>
43       <scope>test</scope>
44     </dependency>
45     <dependency>
46       <groupId>org.mockito</groupId>
47       <artifactId>mockito-core</artifactId>
48       <scope>test</scope>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.controller</groupId>
52       <artifactId>sal-binding-broker-impl</artifactId>
53       <scope>test</scope>
54     </dependency>
55     <dependency>
56       <groupId>org.opendaylight.controller</groupId>
57       <artifactId>sal-binding-broker-impl</artifactId>
58       <type>test-jar</type>
59       <scope>test</scope>
60     </dependency>
61
62   </dependencies>
63
64   <build>
65     <plugins>
66       <plugin>
67         <groupId>org.apache.felix</groupId>
68         <artifactId>maven-bundle-plugin</artifactId>
69         <extensions>true</extensions>
70         <configuration>
71           <instructions>
72             <Export-Package>
73               org.opendaylight.ovsdb.utils.mdsal.utils
74             </Export-Package>
75           </instructions>
76         </configuration>
77       </plugin>
78     </plugins>
79   </build>
80
81   <!--
82       Maven Site Configuration
83
84       The following configuration is necessary for maven-site-plugin to
85       correctly identify the correct deployment path for OpenDaylight Maven
86       sites.
87   -->
88   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
89
90   <distributionManagement>
91     <site>
92       <id>opendaylight-site</id>
93       <url>${nexus.site.url}/${project.artifactId}/</url>
94     </site>
95   </distributionManagement>
96 </project>