rename alto-features dir to features, per best practice: https://wiki.opendaylight...
[alto.git] / features / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2015 Yale University 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.5.0-SNAPSHOT</version>
13   </parent>
14   <groupId>org.opendaylight.alto</groupId>
15   <artifactId>alto-features</artifactId>
16   <version>1.0.0-SNAPSHOT</version>
17   <name>${project.artifactId}</name>
18   <modelVersion>4.0.0</modelVersion>
19   <prerequisites>
20     <maven>3.1.1</maven>
21   </prerequisites>
22   <properties>
23     <mdsal.version>1.2.0-SNAPSHOT</mdsal.version>
24     <yangtools.version>0.7.0-SNAPSHOT</yangtools.version>
25   </properties>
26   <dependencyManagement>
27     <dependencies>
28       <!-- project specific dependencies -->
29       <dependency>
30         <groupId>org.opendaylight.controller</groupId>
31         <artifactId>mdsal-artifacts</artifactId>
32         <version>${mdsal.version}</version>
33         <type>pom</type>
34         <scope>import</scope>
35       </dependency>
36     </dependencies>
37   </dependencyManagement>
38   <dependencies>
39     <dependency>
40       <groupId>org.opendaylight.yangtools</groupId>
41       <artifactId>features-yangtools</artifactId>
42       <classifier>features</classifier>
43       <version>${yangtools.version}</version>
44       <type>xml</type>
45       <scope>runtime</scope>
46     </dependency>
47     <dependency>
48       <groupId>org.opendaylight.controller</groupId>
49       <artifactId>features-mdsal</artifactId>
50       <classifier>features</classifier>
51       <version>${mdsal.version}</version>
52       <type>xml</type>
53       <scope>runtime</scope>
54     </dependency>
55     <dependency>
56       <groupId>org.opendaylight.controller</groupId>
57       <artifactId>features-restconf</artifactId>
58       <classifier>features</classifier>
59       <version>${mdsal.version}</version>
60       <type>xml</type>
61       <scope>runtime</scope>
62     </dependency>
63     <dependency>
64       <groupId>${groupId}</groupId>
65       <artifactId>alto-impl</artifactId>
66       <version>${project.version}</version>
67     </dependency>
68     <dependency>
69       <groupId>${groupId}</groupId>
70       <artifactId>alto-api</artifactId>
71       <version>${project.version}</version>
72     </dependency>
73   </dependencies>
74 </project>