88a70d97ba0a3ff9a220f17f7b09d80e884bc5f4
[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.odlparent</groupId>
14     <artifactId>karaf4-parent</artifactId>
15     <version>2.0.4</version>
16     <relativePath />
17   </parent>
18
19   <groupId>org.opendaylight.nemo</groupId>
20   <artifactId>nemo-karaf</artifactId>
21   <version>1.4.0-SNAPSHOT</version>
22   <!-- <name> formatting is used by autorelease to parse and notify projects on
23        build failure. Please do not modify this unless you have a good reason. -->
24   <name>ODL :: nemo :: ${project.artifactId}</name>
25
26   <prerequisites>
27     <maven>3.1.1</maven>
28   </prerequisites>
29
30   <properties>
31     <feature.mdsal.version>1.7.0-SNAPSHOT</feature.mdsal.version>
32     <feature.dlux.version>0.7.0-SNAPSHOT</feature.dlux.version>
33   </properties>
34
35   <dependencyManagement>
36     <dependencies>
37       <dependency>
38         <groupId>${project.groupId}</groupId>
39         <artifactId>nemo-artifacts</artifactId>
40         <version>${project.version}</version>
41         <type>pom</type>
42         <scope>import</scope>
43       </dependency>
44     </dependencies>
45   </dependencyManagement>
46
47   <dependencies>
48     <dependency>
49       <groupId>org.apache.karaf.features</groupId>
50       <artifactId>framework</artifactId>
51       <type>kar</type>
52     </dependency>
53     <dependency>
54       <groupId>org.opendaylight.controller</groupId>
55       <artifactId>features-mdsal</artifactId>
56       <version>${feature.mdsal.version}</version>
57       <classifier>features</classifier>
58       <type>xml</type>
59       <scope>runtime</scope>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.dlux</groupId>
63       <artifactId>features-dlux</artifactId>
64       <version>${feature.dlux.version}</version>
65       <classifier>features</classifier>
66       <type>xml</type>
67       <scope>runtime</scope>
68     </dependency>
69     <dependency>
70       <groupId>${project.groupId}</groupId>
71       <artifactId>nemo-features</artifactId>
72       <version>${project.version}</version>
73       <classifier>features</classifier>
74       <type>xml</type>
75       <scope>runtime</scope>
76     </dependency>
77   </dependencies>
78
79   <scm>
80     <connection>scm:git:ssh://git.opendaylight.org:29418/nemo.git</connection>
81     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/nemo.git</developerConnection>
82     <url>https://wiki.opendaylight.org/view/NEMO:Main</url>
83     <tag>HEAD</tag>
84   </scm>
85
86   <build>
87     <plugins>
88       <!-- DO NOT deploy the karaf artifact -->
89       <plugin>
90         <groupId>org.apache.maven.plugins</groupId>
91         <artifactId>maven-deploy-plugin</artifactId>
92         <configuration>
93           <skip>true</skip>
94         </configuration>
95       </plugin>
96     </plugins>
97   </build>
98 </project>