Release Beryllium-SR2
[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.2-Beryllium-SR2</version>
16     <relativePath />
17   </parent>
18
19   <groupId>org.opendaylight.nemo</groupId>
20   <artifactId>nemo-karaf</artifactId>
21   <version>1.0.2-Beryllium-SR2</version>
22   <name>${project.artifactId}</name>
23
24   <prerequisites>
25     <maven>3.1.1</maven>
26   </prerequisites>
27
28   <properties>
29     <feature.mdsal.version>1.3.2-Beryllium-SR2</feature.mdsal.version>
30     <feature.dlux.version>0.3.2-Beryllium-SR2</feature.dlux.version>
31   </properties>
32
33   <dependencyManagement>
34     <dependencies>
35       <dependency>
36         <groupId>${project.groupId}</groupId>
37         <artifactId>nemo-artifacts</artifactId>
38         <version>${project.version}</version>
39         <type>pom</type>
40         <scope>import</scope>
41       </dependency>
42     </dependencies>
43   </dependencyManagement>
44
45   <dependencies>
46     <dependency>
47       <groupId>org.apache.karaf.features</groupId>
48       <artifactId>framework</artifactId>
49       <type>kar</type>
50     </dependency>
51     <dependency>
52       <groupId>org.opendaylight.controller</groupId>
53       <artifactId>features-mdsal</artifactId>
54       <version>${feature.mdsal.version}</version>
55       <classifier>features</classifier>
56       <type>xml</type>
57       <scope>runtime</scope>
58     </dependency>
59     <dependency>
60       <groupId>org.opendaylight.dlux</groupId>
61       <artifactId>features-dlux</artifactId>
62       <version>${feature.dlux.version}</version>
63       <classifier>features</classifier>
64       <type>xml</type>
65       <scope>runtime</scope>
66     </dependency>
67     <dependency>
68       <groupId>${project.groupId}</groupId>
69       <artifactId>nemo-features</artifactId>
70       <version>${project.version}</version>
71       <classifier>features</classifier>
72       <type>xml</type>
73       <scope>runtime</scope>
74     </dependency>
75   </dependencies>
76
77   <scm>
78     <connection>scm:git:ssh://git.opendaylight.org:29418/nemo.git</connection>
79     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/nemo.git</developerConnection>
80     <url>https://wiki.opendaylight.org/view/NEMO:Main</url>
81     <tag>HEAD</tag>
82   </scm>
83
84   <build>
85     <plugins>
86       <!-- DO NOT deploy the karaf artifact -->
87       <plugin>
88         <groupId>org.apache.maven.plugins</groupId>
89         <artifactId>maven-deploy-plugin</artifactId>
90         <configuration>
91           <skip>true</skip>
92         </configuration>
93       </plugin>
94     </plugins>
95   </build>
96 </project>