b0b9cb3c1a19caeea423115a263f4a3a6f7b1256
[netconf.git] / 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   <!--
5     Necessary TODO: Hookup your parent pom here, else you will not get necessary versions,
6     maven repos etc.  If you run this archetype in a subdirectory of your project, it
7     will pick the pom.xml from the parent directory as the parent pom, which may or may
8     not be correct.
9   -->
10   <parent>
11     <groupId>org.opendaylight.controller</groupId>
12     <artifactId>karaf-parent</artifactId>
13     <version>1.6.0-SNAPSHOT</version>
14     <relativePath></relativePath>
15   </parent>
16   <artifactId>netconf-karaf</artifactId>
17   <packaging>pom</packaging>
18   <prerequisites>
19     <maven>3.1.1</maven>
20   </prerequisites>
21   <properties>
22     <netconf.version>1.0.0-SNAPSHOT</netconf.version>
23     <restconf.version>1.3.0-SNAPSHOT</restconf.version>
24   </properties>
25
26   <dependencies>
27     <dependency>
28       <!-- scope is compile so all features (there is only one) are installed
29       into startup.properties and the feature repo itself is not installed -->
30       <groupId>org.apache.karaf.features</groupId>
31       <artifactId>framework</artifactId>
32       <type>kar</type>
33     </dependency>
34     <dependency>
35       <groupId>org.opendaylight.netconf</groupId>
36       <artifactId>features-netconf</artifactId>
37       <version>${netconf.version}</version>
38       <classifier>features</classifier>
39       <type>xml</type>
40       <scope>runtime</scope>
41     </dependency>
42     <dependency>
43       <groupId>org.opendaylight.netconf</groupId>
44       <artifactId>features-netconf-connector</artifactId>
45       <version>${restconf.version}</version>
46       <classifier>features</classifier>
47       <type>xml</type>
48       <scope>runtime</scope>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.netconf</groupId>
52       <artifactId>features-restconf</artifactId>
53       <version>${restconf.version}</version>
54       <classifier>features</classifier>
55       <type>xml</type>
56       <scope>runtime</scope>
57     </dependency>
58   </dependencies>
59
60   <build>
61     <plugins>
62       <plugin>
63         <groupId>org.apache.maven.plugins</groupId>
64         <artifactId>maven-deploy-plugin</artifactId>
65         <configuration>
66           <skip>true</skip>
67         </configuration>
68       </plugin>
69       <plugin>
70         <groupId>org.apache.maven.plugins</groupId>
71         <artifactId>maven-install-plugin</artifactId>
72         <configuration>
73           <skip>true</skip>
74         </configuration>
75       </plugin>
76     </plugins>
77   </build>
78   <scm>
79     <connection>scm:git:ssh://git.opendaylight.org:29418/netconf.git</connection>
80     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/netconf.git</developerConnection>
81     <tag>HEAD</tag>
82     <url>https://git.opendaylight.org/gerrit/gitweb?p=netconf.git;a=summary</url>
83   </scm>
84 </project>