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