Remove <prerequisites> from pom.xml to avoid WARNING
[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.9.0-SNAPSHOT</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>${project.artifactId}</name>
19   <modelVersion>4.0.0</modelVersion>
20   <properties>
21     <mdsal.model.version>0.11.0-SNAPSHOT</mdsal.model.version>
22     <controller.mdsal.version>1.6.0-SNAPSHOT</controller.mdsal.version>
23     <yangtools.version>1.2.0-SNAPSHOT</yangtools.version>
24     <aaa.version>0.6.0-SNAPSHOT</aaa.version>
25     <configfile.directory>etc/opendaylight/karaf</configfile.directory>
26   </properties>
27   <dependencyManagement>
28     <dependencies>
29       <!-- project specific dependencies -->
30       <dependency>
31         <groupId>org.opendaylight.controller</groupId>
32         <artifactId>mdsal-artifacts</artifactId>
33         <version>${controller.mdsal.version}</version>
34         <type>pom</type>
35         <scope>import</scope>
36       </dependency>
37       <dependency>
38         <groupId>org.opendaylight.aaa</groupId>
39         <artifactId>features-aaa</artifactId>
40         <version>${aaa.version}</version>
41         <type>pom</type>
42         <scope>import</scope>
43       </dependency>
44     </dependencies>
45   </dependencyManagement>
46   <dependencies>
47     <dependency>
48       <groupId>org.opendaylight.yangtools</groupId>
49       <artifactId>features-yangtools</artifactId>
50       <classifier>features</classifier>
51       <version>${yangtools.version}</version>
52       <type>xml</type>
53       <scope>runtime</scope>
54     </dependency>
55     <dependency>
56       <groupId>org.opendaylight.aaa</groupId>
57       <artifactId>features-aaa</artifactId>
58       <version>${aaa.version}</version>
59       <type>xml</type>
60       <classifier>features</classifier>
61     </dependency>
62     <dependency>
63       <groupId>org.opendaylight.controller</groupId>
64       <artifactId>features-mdsal</artifactId>
65       <classifier>features</classifier>
66       <version>${controller.mdsal.version}</version>
67       <type>xml</type>
68       <scope>runtime</scope>
69     </dependency>
70     <dependency>
71       <groupId>org.opendaylight.mdsal.model</groupId>
72       <artifactId>features-mdsal-model</artifactId>
73       <version>${mdsal.model.version}</version>
74       <classifier>features</classifier>
75       <type>xml</type>
76       <scope>runtime</scope>
77     </dependency>
78     <dependency>
79       <groupId>${project.groupId}</groupId>
80       <artifactId>library</artifactId>
81       <version>${project.version}</version>
82     </dependency>
83     <dependency>
84       <groupId>${project.groupId}</groupId>
85       <artifactId>library</artifactId>
86       <version>${project.version}</version>
87       <type>cfg</type>
88       <classifier>config</classifier>
89     </dependency>
90     <dependency>
91       <groupId>${project.groupId}</groupId>
92       <artifactId>utils.servicehelper</artifactId>
93       <version>${project.version}</version>
94     </dependency>
95     <dependency>
96       <groupId>${project.groupId}</groupId>
97       <artifactId>schema.openvswitch</artifactId>
98       <version>${project.version}</version>
99     </dependency>
100     <dependency>
101       <groupId>${project.groupId}</groupId>
102       <artifactId>schema.hardwarevtep</artifactId>
103       <version>${project.version}</version>
104     </dependency>
105   </dependencies>
106
107   <!--
108       Maven Site Configuration
109
110       The following configuration is necessary for maven-site-plugin to
111       correctly identify the correct deployment path for OpenDaylight Maven
112       sites.
113   -->
114   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
115
116   <distributionManagement>
117     <site>
118       <id>opendaylight-site</id>
119       <url>${nexus.site.url}/${project.artifactId}/</url>
120     </site>
121   </distributionManagement>
122 </project>