BUG-5737: enable OVSDB Maven site
[ovsdb.git] / utils / mdsal-openflow / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2014, 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
14   <parent>
15     <groupId>org.opendaylight.controller</groupId>
16     <artifactId>config-parent</artifactId>
17     <version>0.5.0-SNAPSHOT</version>
18     <relativePath/>
19   </parent>
20
21   <groupId>org.opendaylight.ovsdb</groupId>
22   <artifactId>utils.mdsal-openflow</artifactId>
23   <name>${project.artifactId}</name>
24   <version>1.3.0-SNAPSHOT</version>
25   <packaging>jar</packaging>
26   <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>
27   <licenses>
28     <license>
29       <name>Eclipse Public License v1.0</name>
30       <url>http://www.eclipse.org/legal/epl-v10.html</url>
31     </license>
32   </licenses>
33   <developers>
34     <developer>
35       <name>Sam Hague</name>
36       <email>shague@gmail.com</email>
37       <url>https://github.com/shague</url>
38     </developer>
39   </developers>
40   <scm>
41     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
42     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
43     <tag>HEAD</tag>
44     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
45   </scm>
46
47   <properties>
48     <openflowplugin.version>0.3.0-SNAPSHOT</openflowplugin.version>
49   </properties>
50
51   <dependencies>
52     <!-- controller dependencies -->
53     <dependency>
54       <groupId>org.opendaylight.controller.model</groupId>
55       <artifactId>model-inventory</artifactId>
56     </dependency>
57     <!-- mdsal dependencies -->
58     <dependency>
59       <groupId>org.opendaylight.mdsal.model</groupId>
60       <artifactId>ietf-inet-types</artifactId>
61     </dependency>
62     <dependency>
63       <groupId>org.opendaylight.mdsal.model</groupId>
64       <artifactId>ietf-yang-types</artifactId>
65     </dependency>
66     <dependency>
67       <groupId>org.opendaylight.mdsal.model</groupId>
68       <artifactId>opendaylight-l2-types</artifactId>
69     </dependency>
70     <!-- openflowplugin dependencies -->
71     <dependency>
72       <groupId>org.opendaylight.openflowplugin.model</groupId>
73       <artifactId>model-flow-base</artifactId>
74       <version>${openflowplugin.version}</version>
75     </dependency>
76     <dependency>
77       <groupId>org.opendaylight.openflowplugin</groupId>
78       <artifactId>openflowjava-extension-nicira</artifactId>
79       <version>${openflowplugin.version}</version>
80     </dependency>
81     <dependency>
82       <groupId>org.opendaylight.openflowplugin</groupId>
83       <artifactId>openflowplugin-extension-api</artifactId>
84       <version>${openflowplugin.version}</version>
85     </dependency>
86     <dependency>
87       <groupId>org.opendaylight.openflowplugin</groupId>
88       <artifactId>openflowplugin-extension-nicira</artifactId>
89       <version>${openflowplugin.version}</version>
90     </dependency>
91     <!-- testing dependencies -->
92     <dependency>
93       <groupId>junit</groupId>
94       <artifactId>junit</artifactId>
95       <scope>test</scope>
96     </dependency>
97   </dependencies>
98   <build>
99     <plugins>
100       <plugin>
101         <groupId>org.apache.felix</groupId>
102         <artifactId>maven-bundle-plugin</artifactId>
103         <extensions>true</extensions>
104         <configuration>
105           <instructions>
106             <Export-Package>
107               org.opendaylight.ovsdb.utils.mdsal.openflow
108             </Export-Package>
109           </instructions>
110         </configuration>
111       </plugin>
112     </plugins>
113   </build>
114
115   <!--
116       Maven Site Configuration
117
118       The following configuration is necessary for maven-site-plugin to
119       correctly identify the correct deployment path for OpenDaylight Maven
120       sites.
121   -->
122   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
123
124   <distributionManagement>
125     <site>
126       <id>opendaylight-site</id>
127       <url>${nexus.site.url}/${project.artifactId}/</url>
128     </site>
129   </distributionManagement>
130 </project>