Migrate to odlparent 1.8.0-Carbon
[ovsdb.git] / library / features / 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.8.0-Carbon</version>
13     <relativePath/>
14   </parent>
15   <groupId>org.opendaylight.ovsdb</groupId>
16   <artifactId>library-features</artifactId>
17   <version>1.5.0-SNAPSHOT</version>
18   <!-- <name> formatting is used by autorelease to parse and notify projects on
19        build failure. Please do not modify this unless you have a good reason. -->
20   <name>ODL :: ovsdb :: ${project.artifactId}</name>
21   <modelVersion>4.0.0</modelVersion>
22   <properties>
23     <mdsal.model.version>0.11.0-SNAPSHOT</mdsal.model.version>
24     <controller.mdsal.version>1.6.0-SNAPSHOT</controller.mdsal.version>
25     <yangtools.version>1.2.0-SNAPSHOT</yangtools.version>
26     <aaa.version>0.6.0-SNAPSHOT</aaa.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       <dependency>
40         <groupId>org.opendaylight.aaa</groupId>
41         <artifactId>features-aaa</artifactId>
42         <version>${aaa.version}</version>
43         <type>pom</type>
44         <scope>import</scope>
45       </dependency>
46     </dependencies>
47   </dependencyManagement>
48   <dependencies>
49     <dependency>
50       <groupId>org.opendaylight.yangtools</groupId>
51       <artifactId>features-yangtools</artifactId>
52       <classifier>features</classifier>
53       <version>${yangtools.version}</version>
54       <type>xml</type>
55       <scope>runtime</scope>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.aaa</groupId>
59       <artifactId>features-aaa</artifactId>
60       <version>${aaa.version}</version>
61       <type>xml</type>
62       <classifier>features</classifier>
63     </dependency>
64     <dependency>
65       <groupId>org.opendaylight.controller</groupId>
66       <artifactId>features-mdsal</artifactId>
67       <classifier>features</classifier>
68       <version>${controller.mdsal.version}</version>
69       <type>xml</type>
70       <scope>runtime</scope>
71     </dependency>
72     <dependency>
73       <groupId>org.opendaylight.mdsal.model</groupId>
74       <artifactId>features-mdsal-model</artifactId>
75       <version>${mdsal.model.version}</version>
76       <classifier>features</classifier>
77       <type>xml</type>
78       <scope>runtime</scope>
79     </dependency>
80     <dependency>
81       <groupId>${project.groupId}</groupId>
82       <artifactId>library</artifactId>
83       <version>${project.version}</version>
84     </dependency>
85     <dependency>
86       <groupId>${project.groupId}</groupId>
87       <artifactId>library</artifactId>
88       <version>${project.version}</version>
89       <type>cfg</type>
90       <classifier>config</classifier>
91     </dependency>
92     <dependency>
93       <groupId>${project.groupId}</groupId>
94       <artifactId>utils.servicehelper</artifactId>
95       <version>${project.version}</version>
96     </dependency>
97     <dependency>
98       <groupId>${project.groupId}</groupId>
99       <artifactId>schema.openvswitch</artifactId>
100       <version>${project.version}</version>
101     </dependency>
102     <dependency>
103       <groupId>${project.groupId}</groupId>
104       <artifactId>schema.hardwarevtep</artifactId>
105       <version>${project.version}</version>
106     </dependency>
107   </dependencies>
108
109   <!--
110       Maven Site Configuration
111
112       The following configuration is necessary for maven-site-plugin to
113       correctly identify the correct deployment path for OpenDaylight Maven
114       sites.
115   -->
116   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
117
118   <distributionManagement>
119     <site>
120       <id>opendaylight-site</id>
121       <url>${nexus.site.url}/${project.artifactId}/</url>
122     </site>
123   </distributionManagement>
124 </project>