fb90bdc2c0d3f3d5e102c09dc49137e7e89ace54
[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.mdsal</groupId>
15     <artifactId>binding-parent</artifactId>
16     <version>0.13.0-SNAPSHOT</version>
17     <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   <dependencyManagement>
29     <dependencies>
30       <dependency>
31         <groupId>org.opendaylight.controller</groupId>
32         <artifactId>mdsal-artifacts</artifactId>
33         <version>1.8.0-SNAPSHOT</version>
34         <type>pom</type>
35         <scope>import</scope>
36       </dependency>
37     </dependencies>
38   </dependencyManagement>
39
40   <dependencies>
41     <dependency>
42       <groupId>org.opendaylight.controller</groupId>
43       <artifactId>sal-binding-api</artifactId>
44     </dependency>
45     <dependency>
46       <groupId>org.opendaylight.ovsdb</groupId>
47       <artifactId>southbound-api</artifactId>
48       <version>${project.version}</version>
49     </dependency>
50
51     <!-- testing dependencies -->
52     <dependency>
53       <groupId>junit</groupId>
54       <artifactId>junit</artifactId>
55       <scope>test</scope>
56     </dependency>
57     <dependency>
58       <groupId>org.mockito</groupId>
59       <artifactId>mockito-core</artifactId>
60       <scope>test</scope>
61     </dependency>
62     <dependency>
63       <groupId>org.opendaylight.controller</groupId>
64       <artifactId>sal-binding-broker-impl</artifactId>
65       <scope>test</scope>
66     </dependency>
67     <dependency>
68       <groupId>org.opendaylight.controller</groupId>
69       <artifactId>sal-binding-broker-impl</artifactId>
70       <type>test-jar</type>
71       <scope>test</scope>
72     </dependency>
73
74   </dependencies>
75
76   <build>
77     <plugins>
78       <plugin>
79         <groupId>org.apache.felix</groupId>
80         <artifactId>maven-bundle-plugin</artifactId>
81         <extensions>true</extensions>
82         <configuration>
83           <instructions>
84             <Export-Package>
85               org.opendaylight.ovsdb.utils.mdsal.utils
86             </Export-Package>
87           </instructions>
88         </configuration>
89       </plugin>
90     </plugins>
91   </build>
92
93   <!--
94       Maven Site Configuration
95
96       The following configuration is necessary for maven-site-plugin to
97       correctly identify the correct deployment path for OpenDaylight Maven
98       sites.
99   -->
100   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
101
102   <distributionManagement>
103     <site>
104       <id>opendaylight-site</id>
105       <url>${nexus.site.url}/${project.artifactId}/</url>
106     </site>
107   </distributionManagement>
108 </project>