434f19099713d356669c6245c4c064e9782ae991
[openflowplugin.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>9.0.13</version>
8   </parent>
9   <groupId>org.opendaylight.openflowplugin</groupId>
10   <artifactId>openflowplugin-karaf</artifactId>
11   <version>0.14.0-SNAPSHOT</version>
12   <packaging>pom</packaging>
13
14   <properties>
15     <openflowplugin.version>0.14.0-SNAPSHOT</openflowplugin.version>
16   </properties>
17
18   <dependencyManagement>
19     <dependencies>
20       <dependency>
21         <groupId>org.opendaylight.openflowplugin</groupId>
22         <artifactId>openflowplugin-artifacts</artifactId>
23         <version>${openflowplugin.version}</version>
24         <scope>import</scope>
25         <type>pom</type>
26       </dependency>
27     </dependencies>
28   </dependencyManagement>
29
30   <dependencies>
31     <dependency>
32       <!-- scope is compile so all features (there is only one) are installed
33             into startup.properties and the feature repo itself is not installed -->
34       <groupId>org.apache.karaf.features</groupId>
35       <artifactId>framework</artifactId>
36       <type>kar</type>
37     </dependency>
38     <!-- openflowplugin feature -->
39     <dependency>
40       <artifactId>features-openflowplugin</artifactId>
41       <groupId>org.opendaylight.openflowplugin</groupId>
42       <classifier>features</classifier>
43       <type>xml</type>
44       <scope>runtime</scope>
45     </dependency>
46     <!-- openflowplugin extension feature -->
47     <dependency>
48       <groupId>org.opendaylight.openflowplugin</groupId>
49       <artifactId>features-openflowplugin-extension</artifactId>
50       <classifier>features</classifier>
51       <type>xml</type>
52       <scope>runtime</scope>
53     </dependency>
54   </dependencies>
55
56   <build>
57     <plugins>
58       <!-- DO NOT deploy the karaf artifact -->
59       <plugin>
60         <groupId>org.apache.maven.plugins</groupId>
61         <artifactId>maven-deploy-plugin</artifactId>
62         <configuration>
63           <skip>true</skip>
64         </configuration>
65       </plugin>
66     </plugins>
67   </build>
68
69   <scm>
70     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
71     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
72     <tag>HEAD</tag>
73     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
74   </scm>
75 </project>