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