Update to work on Sodium SR1
[l2switch.git] / distribution / karaf / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3   <modelVersion>4.0.0</modelVersion>
4   <parent>
5     <groupId>org.opendaylight.odlparent</groupId>
6     <artifactId>karaf4-parent</artifactId>
7     <version>5.0.2</version>
8     <relativePath/>
9   </parent>
10   <artifactId>distribution-karaf</artifactId>
11   <groupId>org.opendaylight.l2switch</groupId>
12   <version>0.8.0-SNAPSHOT</version>
13   <packaging>pom</packaging>
14
15   <properties>
16     <karaf.localFeature>odl-l2switch-switch-ui</karaf.localFeature>
17   </properties>
18
19   <dependencies>
20     <!-- Basic Karaf dependencies -->
21     <dependency>
22       <groupId>org.apache.karaf.features</groupId>
23       <artifactId>framework</artifactId>
24       <version>${karaf.version}</version>
25       <type>kar</type>
26     </dependency>
27     <dependency>
28       <groupId>org.opendaylight.l2switch</groupId>
29       <artifactId>features-l2switch</artifactId>
30       <version>${project.version}</version>
31       <classifier>features</classifier>
32       <type>xml</type>
33       <scope>runtime</scope>
34     </dependency>
35   </dependencies>
36
37   <build>
38     <plugins>
39       <!-- DO NOT deploy the karaf artifact -->
40       <plugin>
41         <groupId>org.apache.maven.plugins</groupId>
42         <artifactId>maven-deploy-plugin</artifactId>
43         <configuration>
44           <skip>true</skip>
45         </configuration>
46       </plugin>
47     </plugins>
48   </build>
49   <scm>
50     <connection>scm:git:ssh://git.opendaylight.org:29418/l2switch.git</connection>
51     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/l2switch.git</developerConnection>
52     <tag>HEAD</tag>
53     <url>https://git.opendaylight.org/gerrit/gitweb?p=l2switch.git;a=summary</url>
54   </scm>
55 </project>