Merge "Patch for Bug 3889(redundant final keyword) and Bug 3900 (specific exception...
[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.7.0-SNAPSHOT</version>
14     <relativePath></relativePath>
15   </parent>
16   <groupId>org.opendaylight.netconf</groupId>
17   <artifactId>netconf-karaf</artifactId>
18   <version>1.4.0-SNAPSHOT</version>
19   <packaging>pom</packaging>
20   <prerequisites>
21     <maven>3.1.1</maven>
22   </prerequisites>
23   <properties>
24     <netconf.version>1.1.0-SNAPSHOT</netconf.version>
25     <restconf.version>1.4.0-SNAPSHOT</restconf.version>
26   </properties>
27
28   <dependencies>
29     <dependency>
30       <!-- scope is compile so all features (there is only one) are installed
31       into startup.properties and the feature repo itself is not installed -->
32       <groupId>org.apache.karaf.features</groupId>
33       <artifactId>framework</artifactId>
34       <type>kar</type>
35     </dependency>
36     <dependency>
37       <groupId>org.opendaylight.netconf</groupId>
38       <artifactId>features-netconf</artifactId>
39       <version>${netconf.version}</version>
40       <classifier>features</classifier>
41       <type>xml</type>
42       <scope>runtime</scope>
43     </dependency>
44     <dependency>
45       <groupId>org.opendaylight.netconf</groupId>
46       <artifactId>features-netconf-connector</artifactId>
47       <version>${netconf.version}</version>
48       <classifier>features</classifier>
49       <type>xml</type>
50       <scope>runtime</scope>
51     </dependency>
52     <dependency>
53       <groupId>org.opendaylight.netconf</groupId>
54       <artifactId>features-restconf</artifactId>
55       <version>${restconf.version}</version>
56       <classifier>features</classifier>
57       <type>xml</type>
58       <scope>runtime</scope>
59     </dependency>
60   </dependencies>
61
62   <build>
63     <plugins>
64       <plugin>
65         <groupId>org.apache.maven.plugins</groupId>
66         <artifactId>maven-deploy-plugin</artifactId>
67         <configuration>
68           <skip>true</skip>
69         </configuration>
70       </plugin>
71       <plugin>
72         <groupId>org.apache.maven.plugins</groupId>
73         <artifactId>maven-install-plugin</artifactId>
74         <configuration>
75           <skip>true</skip>
76         </configuration>
77       </plugin>
78     </plugins>
79   </build>
80   <scm>
81     <connection>scm:git:ssh://git.opendaylight.org:29418/netconf.git</connection>
82     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/netconf.git</developerConnection>
83     <tag>HEAD</tag>
84     <url>https://git.opendaylight.org/gerrit/gitweb?p=netconf.git;a=summary</url>
85   </scm>
86 </project>