7f23a3702c8731cb7b44eba78ef049e617aee89c
[nemo.git] / nemo-karaf / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2015 Huawei, Inc 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
7 -->
8 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
9   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
10   <modelVersion>4.0.0</modelVersion>
11
12   <parent>
13     <groupId>org.opendaylight.controller</groupId>
14     <artifactId>karaf-parent</artifactId>
15     <version>1.6.0-SNAPSHOT</version>
16     <relativePath />
17   </parent>
18
19   <groupId>org.opendaylight.nemo</groupId>
20   <artifactId>nemo-karaf</artifactId>
21   <version>1.0.0-SNAPSHOT</version>
22   <name>${project.artifactId}</name>
23
24   <prerequisites>
25     <maven>3.1.1</maven>
26   </prerequisites>
27
28   <properties>
29     <feature.test.version>1.6.0-SNAPSHOT</feature.test.version>
30     <feature.mdsal.version>1.3.0-SNAPSHOT</feature.mdsal.version>
31     <feature.dlux.version>0.3.0-SNAPSHOT</feature.dlux.version>
32     <feature.flow.version>1.3.0-SNAPSHOT</feature.flow.version>
33     <feature.yangtools.version>0.8.0-SNAPSHOT</feature.yangtools.version>
34     <feature.adsal.version>0.10.0-SNAPSHOT</feature.adsal.version>
35   </properties>
36
37   <dependencyManagement>
38     <dependencies>
39       <dependency>
40         <groupId>${project.groupId}</groupId>
41         <artifactId>nemo-artifacts</artifactId>
42         <version>${project.version}</version>
43         <type>pom</type>
44         <scope>import</scope>
45       </dependency>
46     </dependencies>
47   </dependencyManagement>
48
49   <dependencies>
50     <dependency>
51       <groupId>org.apache.karaf.features</groupId>
52       <artifactId>framework</artifactId>
53       <type>kar</type>
54     </dependency>
55     <dependency>
56       <groupId>org.opendaylight.controller</groupId>
57       <artifactId>features-mdsal</artifactId>
58       <version>${feature.mdsal.version}</version>
59       <classifier>features</classifier>
60       <type>xml</type>
61       <scope>runtime</scope>
62     </dependency>
63     <dependency>
64       <groupId>org.opendaylight.controller</groupId>
65       <artifactId>features-adsal</artifactId>
66       <classifier>features</classifier>
67       <version>${feature.adsal.version}</version>
68       <type>xml</type>
69       <scope>runtime</scope>
70     </dependency>
71     <dependency>
72       <groupId>org.opendaylight.dlux</groupId>
73       <artifactId>features-dlux</artifactId>
74       <version>${feature.dlux.version}</version>
75       <classifier>features</classifier>
76       <type>xml</type>
77       <scope>runtime</scope>
78     </dependency>
79     <dependency>
80       <groupId>${project.groupId}</groupId>
81       <artifactId>nemo-features</artifactId>
82       <version>${project.version}</version>
83       <classifier>features</classifier>
84       <type>xml</type>
85       <scope>runtime</scope>
86     </dependency>
87   </dependencies>
88
89   <scm>
90     <connection>scm:git:ssh://git.opendaylight.org:29418/nemo.git</connection>
91     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/nemo.git</developerConnection>
92     <url>https://wiki.opendaylight.org/view/NEMO:Main</url>
93     <tag>HEAD</tag>
94   </scm>
95 </project>