cd8313b739a83c75ee983e962990acdd9f5f33c6
[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" 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   <modelVersion>4.0.0</modelVersion>
11   <parent>
12     <groupId>org.opendaylight.ovsdb</groupId>
13     <artifactId>ovsdb-binding-parent</artifactId>
14     <version>1.8.0-SNAPSHOT</version>
15     <relativePath>../../commons/binding-parent</relativePath>
16   </parent>
17
18   <groupId>org.opendaylight.ovsdb</groupId>
19   <artifactId>utils.mdsal-utils</artifactId>
20   <version>1.8.0-SNAPSHOT</version>
21   <packaging>bundle</packaging>
22   <!-- <name> formatting is used by autorelease to parse and notify projects on
23        build failure. Please do not modify this unless you have a good reason. -->
24   <name>ODL :: ovsdb :: ${project.artifactId}</name>
25
26   <dependencies>
27     <dependency>
28       <groupId>org.opendaylight.controller</groupId>
29       <artifactId>sal-binding-api</artifactId>
30     </dependency>
31
32     <!-- testing dependencies -->
33     <dependency>
34       <groupId>junit</groupId>
35       <artifactId>junit</artifactId>
36       <scope>test</scope>
37     </dependency>
38     <dependency>
39       <groupId>org.mockito</groupId>
40       <artifactId>mockito-core</artifactId>
41       <scope>test</scope>
42     </dependency>
43     <dependency>
44       <groupId>org.opendaylight.ovsdb</groupId>
45       <artifactId>southbound-api</artifactId>
46       <version>${project.version}</version>
47       <scope>test</scope>
48     </dependency>
49     <dependency>
50       <groupId>org.opendaylight.controller</groupId>
51       <artifactId>sal-binding-broker-impl</artifactId>
52       <scope>test</scope>
53     </dependency>
54     <dependency>
55       <groupId>org.opendaylight.controller</groupId>
56       <artifactId>sal-binding-broker-impl</artifactId>
57       <type>test-jar</type>
58       <scope>test</scope>
59     </dependency>
60     <dependency>
61       <groupId>org.opendaylight.mdsal</groupId>
62       <artifactId>mdsal-binding-dom-adapter</artifactId>
63       <scope>test</scope>
64     </dependency>
65     <dependency>
66       <groupId>org.opendaylight.mdsal</groupId>
67       <artifactId>mdsal-binding-dom-adapter</artifactId>
68       <type>test-jar</type>
69       <scope>test</scope>
70     </dependency>
71
72   </dependencies>
73
74   <build>
75     <plugins>
76       <plugin>
77         <groupId>org.apache.felix</groupId>
78         <artifactId>maven-bundle-plugin</artifactId>
79         <extensions>true</extensions>
80         <configuration>
81           <instructions>
82             <Export-Package>
83               org.opendaylight.ovsdb.utils.mdsal.utils
84             </Export-Package>
85           </instructions>
86         </configuration>
87       </plugin>
88     </plugins>
89   </build>
90
91   <!--
92       Maven Site Configuration
93
94       The following configuration is necessary for maven-site-plugin to
95       correctly identify the correct deployment path for OpenDaylight Maven
96       sites.
97   -->
98   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
99
100   <distributionManagement>
101     <site>
102       <id>opendaylight-site</id>
103       <url>${nexus.site.url}/${project.artifactId}/</url>
104     </site>
105   </distributionManagement>
106 </project>