Add blueprint wiring for loopback controller-config
[netconf.git] / features / netconf-connector / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 2016 Cisco Systems, Inc. and others.  All rights reserved.
4
5  This program and the accompanying materials are made available under the
6  terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11   <modelVersion>4.0.0</modelVersion>
12   <parent>
13     <groupId>org.opendaylight.odlparent</groupId>
14     <artifactId>features-parent</artifactId>
15     <version>1.8.0-SNAPSHOT</version>
16     <relativePath/>
17   </parent>
18   <groupId>org.opendaylight.netconf</groupId>
19   <artifactId>features-netconf-connector</artifactId>
20   <version>1.2.0-SNAPSHOT</version>
21   <packaging>jar</packaging>
22
23   <properties>
24     <commons.opendaylight.version>1.8.0-SNAPSHOT</commons.opendaylight.version>
25     <controller.mdsal.version>1.5.0-SNAPSHOT</controller.mdsal.version>
26     <config.version>0.6.0-SNAPSHOT</config.version>
27     <features.test.version>1.8.0-SNAPSHOT</features.test.version>
28     <mdsal.version>2.2.0-SNAPSHOT</mdsal.version>
29     <mdsal.model.version>0.10.0-SNAPSHOT</mdsal.model.version>
30     <netconf.version>1.2.0-SNAPSHOT</netconf.version>
31     <netconf.connector.version>1.5.0-SNAPSHOT</netconf.connector.version>
32     <yangtools.version>1.1.0-SNAPSHOT</yangtools.version>
33
34     <features.file>features.xml</features.file>
35     <config.configfile.directory>etc/opendaylight/karaf</config.configfile.directory>
36     <config.netconf.client.configfile>01-netconf.xml</config.netconf.client.configfile>
37   </properties>
38
39   <dependencyManagement>
40     <dependencies>
41       <dependency>
42         <groupId>org.opendaylight.netconf</groupId>
43         <artifactId>netconf-artifacts</artifactId>
44         <version>1.2.0-SNAPSHOT</version>
45         <type>pom</type>
46         <scope>import</scope>
47       </dependency>
48     </dependencies>
49   </dependencyManagement>
50
51   <dependencies>
52     <dependency>
53       <groupId>org.opendaylight.yangtools</groupId>
54       <artifactId>features-yangtools</artifactId>
55       <version>${yangtools.version}</version>
56       <classifier>features</classifier>
57       <type>xml</type>
58     </dependency>
59     <dependency>
60       <groupId>org.opendaylight.controller</groupId>
61       <artifactId>features-mdsal</artifactId>
62       <version>${controller.mdsal.version}</version>
63       <classifier>features</classifier>
64       <type>xml</type>
65       <scope>runtime</scope>
66     </dependency>
67     <dependency>
68       <groupId>org.opendaylight.mdsal.model</groupId>
69       <artifactId>features-mdsal-model</artifactId>
70       <version>${mdsal.model.version}</version>
71       <classifier>features</classifier>
72       <type>xml</type>
73       <scope>runtime</scope>
74     </dependency>
75     <dependency>
76       <groupId>${project.groupId}</groupId>
77       <artifactId>features-netconf</artifactId>
78       <classifier>features</classifier>
79       <type>xml</type>
80     </dependency>
81     <dependency>
82       <groupId>${project.groupId}</groupId>
83       <artifactId>sal-netconf-connector</artifactId>
84     </dependency>
85     <dependency>
86       <groupId>org.opendaylight.netconf</groupId>
87       <artifactId>messagebus-netconf</artifactId>
88     </dependency>
89     <dependency>
90       <groupId>${project.groupId}</groupId>
91       <artifactId>netconf-console</artifactId>
92       <version>${project.version}</version>
93     </dependency>
94     <dependency>
95       <groupId>${project.groupId}</groupId>
96       <artifactId>netconf-topology</artifactId>
97     </dependency>
98     <dependency>
99       <groupId>${project.groupId}</groupId>
100       <artifactId>netconf-topology-config</artifactId>
101     </dependency>
102     <dependency>
103       <groupId>${project.groupId}</groupId>
104       <artifactId>netconf-tcp</artifactId>
105     </dependency>
106     <dependency>
107       <groupId>${project.groupId}</groupId>
108       <artifactId>netconf-ssh</artifactId>
109     </dependency>
110     <dependency>
111       <groupId>org.bouncycastle</groupId>
112       <artifactId>bcpkix-jdk15on</artifactId>
113     </dependency>
114     <dependency>
115       <groupId>org.bouncycastle</groupId>
116       <artifactId>bcprov-jdk15on</artifactId>
117     </dependency>
118     <dependency>
119       <groupId>${project.groupId}</groupId>
120       <artifactId>netconf-topology-singleton</artifactId>
121     </dependency>
122     <dependency>
123       <groupId>${project.groupId}</groupId>
124       <artifactId>netconf-connector-config</artifactId>
125     </dependency>
126   </dependencies>
127
128   <scm>
129     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
130     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
131     <tag>HEAD</tag>
132     <url>https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=summary</url>
133   </scm>
134 </project>