BUG-5737: enable OVSDB Maven site
[ovsdb.git] / library / features / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2015, 2016 Red Hat, Inc. and others. All rights reserved. and others. All rights reserved.
4 This program and the accompanying materials are made available under the
5 terms of the Eclipse Public License v1.0 which accompanies this distribution,
6 and is available at http://www.eclipse.org/legal/epl-v10.html INTERNAL
7 -->
8 <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">
9   <parent>
10     <groupId>org.opendaylight.odlparent</groupId>
11     <artifactId>features-parent</artifactId>
12     <version>1.7.0-SNAPSHOT</version>
13     <relativePath/>
14   </parent>
15   <groupId>org.opendaylight.ovsdb</groupId>
16   <artifactId>library-features</artifactId>
17   <version>1.3.0-SNAPSHOT</version>
18   <name>${project.artifactId}</name>
19   <modelVersion>4.0.0</modelVersion>
20   <prerequisites>
21     <maven>3.1.1</maven>
22   </prerequisites>
23   <properties>
24     <mdsal.model.version>0.9.0-SNAPSHOT</mdsal.model.version>
25     <controller.mdsal.version>1.4.0-SNAPSHOT</controller.mdsal.version>
26     <yangtools.version>1.0.0-SNAPSHOT</yangtools.version>
27     <configfile.directory>etc/opendaylight/karaf</configfile.directory>
28   </properties>
29   <dependencyManagement>
30     <dependencies>
31       <!-- project specific dependencies -->
32       <dependency>
33         <groupId>org.opendaylight.controller</groupId>
34         <artifactId>mdsal-artifacts</artifactId>
35         <version>${controller.mdsal.version}</version>
36         <type>pom</type>
37         <scope>import</scope>
38       </dependency>
39     </dependencies>
40   </dependencyManagement>
41   <dependencies>
42     <dependency>
43       <groupId>org.opendaylight.yangtools</groupId>
44       <artifactId>features-yangtools</artifactId>
45       <classifier>features</classifier>
46       <version>${yangtools.version}</version>
47       <type>xml</type>
48       <scope>runtime</scope>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.controller</groupId>
52       <artifactId>features-mdsal</artifactId>
53       <classifier>features</classifier>
54       <version>${controller.mdsal.version}</version>
55       <type>xml</type>
56       <scope>runtime</scope>
57     </dependency>
58     <dependency>
59       <groupId>org.opendaylight.mdsal.model</groupId>
60       <artifactId>features-mdsal-model</artifactId>
61       <version>${mdsal.model.version}</version>
62       <classifier>features</classifier>
63       <type>xml</type>
64       <scope>runtime</scope>
65     </dependency>
66     <dependency>
67       <groupId>${project.groupId}</groupId>
68       <artifactId>library</artifactId>
69       <version>${project.version}</version>
70     </dependency>
71     <dependency>
72       <groupId>${project.groupId}</groupId>
73       <artifactId>library</artifactId>
74       <version>${project.version}</version>
75       <type>xml</type>
76       <classifier>config</classifier>
77     </dependency>
78     <dependency>
79       <groupId>${project.groupId}</groupId>
80       <artifactId>utils.servicehelper</artifactId>
81       <version>${project.version}</version>
82     </dependency>
83     <dependency>
84       <groupId>${project.groupId}</groupId>
85       <artifactId>schema.openvswitch</artifactId>
86       <version>${project.version}</version>
87     </dependency>
88   </dependencies>
89
90   <!--
91       Maven Site Configuration
92
93       The following configuration is necessary for maven-site-plugin to
94       correctly identify the correct deployment path for OpenDaylight Maven
95       sites.
96   -->
97   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
98
99   <distributionManagement>
100     <site>
101       <id>opendaylight-site</id>
102       <url>${nexus.site.url}/${project.artifactId}/</url>
103     </site>
104   </distributionManagement>
105 </project>