ecd3e5abe631bf4d5a886a66d11f64c101ded35c
[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     <config.netconf.connector.configfile>99-netconf-connector.xml</config.netconf.connector.configfile>
38   </properties>
39
40   <dependencyManagement>
41     <dependencies>
42       <dependency>
43         <groupId>org.opendaylight.netconf</groupId>
44         <artifactId>netconf-artifacts</artifactId>
45         <version>1.2.0-SNAPSHOT</version>
46         <type>pom</type>
47         <scope>import</scope>
48       </dependency>
49     </dependencies>
50   </dependencyManagement>
51
52   <dependencies>
53     <dependency>
54       <groupId>org.opendaylight.yangtools</groupId>
55       <artifactId>features-yangtools</artifactId>
56       <version>${yangtools.version}</version>
57       <classifier>features</classifier>
58       <type>xml</type>
59     </dependency>
60     <dependency>
61       <groupId>org.opendaylight.controller</groupId>
62       <artifactId>features-mdsal</artifactId>
63       <version>${controller.mdsal.version}</version>
64       <classifier>features</classifier>
65       <type>xml</type>
66       <scope>runtime</scope>
67     </dependency>
68     <dependency>
69       <groupId>org.opendaylight.mdsal.model</groupId>
70       <artifactId>features-mdsal-model</artifactId>
71       <version>${mdsal.model.version}</version>
72       <classifier>features</classifier>
73       <type>xml</type>
74       <scope>runtime</scope>
75     </dependency>
76     <dependency>
77       <groupId>${project.groupId}</groupId>
78       <artifactId>features-netconf</artifactId>
79       <classifier>features</classifier>
80       <type>xml</type>
81     </dependency>
82     <dependency>
83       <groupId>${project.groupId}</groupId>
84       <artifactId>sal-netconf-connector</artifactId>
85     </dependency>
86     <dependency>
87       <groupId>org.opendaylight.netconf</groupId>
88       <artifactId>messagebus-netconf</artifactId>
89     </dependency>
90     <dependency>
91       <groupId>${project.groupId}</groupId>
92       <artifactId>netconf-console</artifactId>
93       <version>${project.version}</version>
94     </dependency>
95     <dependency>
96       <groupId>${project.groupId}</groupId>
97       <artifactId>netconf-topology</artifactId>
98     </dependency>
99     <dependency>
100       <groupId>${project.groupId}</groupId>
101       <artifactId>netconf-topology-config</artifactId>
102     </dependency>
103     <dependency>
104       <groupId>${project.groupId}</groupId>
105       <artifactId>netconf-tcp</artifactId>
106     </dependency>
107     <dependency>
108       <groupId>${project.groupId}</groupId>
109       <artifactId>netconf-ssh</artifactId>
110     </dependency>
111     <dependency>
112       <groupId>org.bouncycastle</groupId>
113       <artifactId>bcpkix-jdk15on</artifactId>
114     </dependency>
115     <dependency>
116       <groupId>org.bouncycastle</groupId>
117       <artifactId>bcprov-jdk15on</artifactId>
118     </dependency>
119     <dependency>
120       <groupId>${project.groupId}</groupId>
121       <artifactId>netconf-topology-singleton</artifactId>
122     </dependency>
123
124     <dependency>
125       <groupId>${project.groupId}</groupId>
126       <artifactId>netconf-connector-config</artifactId>
127       <version>${netconf.version}</version>
128       <type>xml</type>
129       <classifier>config</classifier>
130     </dependency>
131   </dependencies>
132
133   <scm>
134     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
135     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
136     <tag>HEAD</tag>
137     <url>https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=summary</url>
138   </scm>
139 </project>