BUG-5737: enable OVSDB Maven site
[ovsdb.git] / southbound / southbound-api / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2014, 2016 Cisco Systems, 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   <parent>
11     <groupId>org.opendaylight.mdsal</groupId>
12     <artifactId>binding-parent</artifactId>
13     <version>0.9.0-SNAPSHOT</version>
14     <relativePath/>
15   </parent>
16
17   <modelVersion>4.0.0</modelVersion>
18   <groupId>org.opendaylight.ovsdb</groupId>
19   <artifactId>southbound-api</artifactId>
20   <version>1.3.0-SNAPSHOT</version>
21   <packaging>bundle</packaging>
22   <description>The OVSDB Plugin integration project is a project for OpenDaylight that will implement the Open vSwitch Database RFC 7047 management protocol allowing the Southbound configuration of vSwitches and a network virtualization implementation.</description>
23   <licenses>
24     <license>
25       <name>Eclipse Public License v1.0</name>
26       <url>http://www.eclipse.org/legal/epl-v10.html</url>
27     </license>
28   </licenses>
29   <developers>
30     <developer>
31       <name>Sam Hague</name>
32       <email>shague@gmail.com</email>
33       <url>https://github.com/shague</url>
34     </developer>
35   </developers>
36   <scm>
37     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
38     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
39     <tag>HEAD</tag>
40     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
41   </scm>
42
43   <dependencyManagement>
44     <dependencies>
45       <dependency>
46         <groupId>org.opendaylight.mdsal</groupId>
47         <artifactId>mdsal-artifacts</artifactId>
48         <version>2.1.0-SNAPSHOT</version>
49         <type>pom</type>
50         <scope>import</scope>
51       </dependency>
52       <dependency>
53         <groupId>org.opendaylight.mdsal.model</groupId>
54         <artifactId>mdsal-model-artifacts</artifactId>
55         <version>0.9.0-SNAPSHOT</version>
56         <type>pom</type>
57         <scope>import</scope>
58       </dependency>
59     </dependencies>
60   </dependencyManagement>
61
62   <dependencies>
63     <dependency>
64       <groupId>org.opendaylight.mdsal.model</groupId>
65       <artifactId>ietf-topology</artifactId>
66     </dependency>
67     <dependency>
68       <groupId>org.opendaylight.mdsal.model</groupId>
69       <artifactId>yang-ext</artifactId>
70     </dependency>
71     <dependency>
72       <groupId>org.opendaylight.mdsal.model</groupId>
73       <artifactId>ietf-inet-types</artifactId>
74     </dependency>
75     <dependency>
76       <groupId>org.opendaylight.mdsal.model</groupId>
77       <artifactId>ietf-yang-types-20130715</artifactId>
78     </dependency>
79     <dependency>
80       <groupId>org.opendaylight.mdsal.model</groupId>
81       <artifactId>opendaylight-l2-types</artifactId>
82     </dependency>
83     <dependency>
84       <groupId>org.opendaylight.yangtools</groupId>
85       <artifactId>yang-common</artifactId>
86     </dependency>
87     <dependency>
88       <groupId>org.opendaylight.yangtools</groupId>
89       <artifactId>concepts</artifactId>
90     </dependency>
91     <dependency>
92       <groupId>com.google.guava</groupId>
93       <artifactId>guava</artifactId>
94     </dependency>
95   </dependencies>
96   <build>
97     <plugins>
98       <plugin>
99         <groupId>org.apache.maven.plugins</groupId>
100         <artifactId>maven-checkstyle-plugin</artifactId>
101         <configuration>
102           <failsOnError>true</failsOnError>
103         </configuration>
104       </plugin>
105       <plugin>
106         <groupId>org.apache.felix</groupId>
107         <artifactId>maven-bundle-plugin</artifactId>
108         <extensions>true</extensions>
109         <configuration>
110           <instructions>
111             <Export-Package>
112               org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.overlay.rev150105,
113               org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.overlay.rev150105.*,
114               org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.ovsdb.rev150105,
115               org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.ovsdb.rev150105.*
116             </Export-Package>
117           </instructions>
118         </configuration>
119       </plugin>
120     </plugins>
121   </build>
122
123   <!--
124       Maven Site Configuration
125
126       The following configuration is necessary for maven-site-plugin to
127       correctly identify the correct deployment path for OpenDaylight Maven
128       sites.
129   -->
130   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
131
132   <distributionManagement>
133     <site>
134       <id>opendaylight-site</id>
135       <url>${nexus.site.url}/${project.artifactId}/</url>
136     </site>
137   </distributionManagement>
138 </project>