BUG-8923: eliminate another reference to bcprov
[netconf.git] / features / netconf-connector / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright © 2017 Red Hat, Inc. and others.
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>odlparent</artifactId>
15         <version>2.0.2</version>
16         <relativePath/>
17     </parent>
18     <groupId>org.opendaylight.netconf</groupId>
19     <artifactId>features-netconf-connector-aggregator</artifactId>
20     <version>1.3.0-SNAPSHOT</version>
21     <packaging>pom</packaging>
22
23     <properties>
24       <commons.opendaylight.version>1.9.0-SNAPSHOT</commons.opendaylight.version>
25       <controller.mdsal.version>1.6.0-SNAPSHOT</controller.mdsal.version>
26       <config.version>0.7.0-SNAPSHOT</config.version>
27       <mdsal.version>2.3.0-SNAPSHOT</mdsal.version>
28       <mdsal.model.version>0.11.0-SNAPSHOT</mdsal.model.version>
29       <netconf.version>1.3.0-SNAPSHOT</netconf.version>
30       <netconf.connector.version>1.6.0-SNAPSHOT</netconf.connector.version>
31       <yangtools.version>1.2.0-SNAPSHOT</yangtools.version>
32     </properties>
33
34     <modules>
35         <module>features-netconf-connector</module>
36         <module>odl-message-bus</module>
37         <module>odl-netconf-clustered-topology</module>
38         <module>odl-netconf-connector</module>
39         <module>odl-netconf-connector-all</module>
40         <module>odl-netconf-connector-ssh</module>
41         <module>odl-netconf-callhome-ssh</module>
42         <module>odl-netconf-console</module>
43         <module>odl-netconf-topology</module>
44     </modules>
45
46   <dependencyManagement>
47     <dependencies>
48       <dependency>
49         <groupId>org.opendaylight.netconf</groupId>
50         <artifactId>netconf-artifacts</artifactId>
51         <version>1.3.0-SNAPSHOT</version>
52         <type>pom</type>
53         <scope>import</scope>
54       </dependency>
55     </dependencies>
56   </dependencyManagement>
57
58   <dependencies>
59     <dependency>
60       <groupId>org.opendaylight.yangtools</groupId>
61       <artifactId>features-yangtools</artifactId>
62       <version>${yangtools.version}</version>
63       <classifier>features</classifier>
64       <type>xml</type>
65     </dependency>
66     <dependency>
67       <groupId>org.opendaylight.controller</groupId>
68       <artifactId>features-mdsal</artifactId>
69       <version>${controller.mdsal.version}</version>
70       <classifier>features</classifier>
71       <type>xml</type>
72       <scope>runtime</scope>
73     </dependency>
74     <dependency>
75       <groupId>org.opendaylight.mdsal.model</groupId>
76       <artifactId>features-mdsal-model</artifactId>
77       <version>${mdsal.model.version}</version>
78       <classifier>features</classifier>
79       <type>xml</type>
80       <scope>runtime</scope>
81     </dependency>
82     <dependency>
83       <groupId>${project.groupId}</groupId>
84       <artifactId>features-netconf</artifactId>
85       <classifier>features</classifier>
86       <type>xml</type>
87     </dependency>
88     <dependency>
89       <groupId>${project.groupId}</groupId>
90       <artifactId>sal-netconf-connector</artifactId>
91     </dependency>
92     <dependency>
93       <groupId>org.opendaylight.netconf</groupId>
94       <artifactId>messagebus-netconf</artifactId>
95     </dependency>
96     <dependency>
97       <groupId>${project.groupId}</groupId>
98       <artifactId>netconf-console</artifactId>
99       <version>${project.version}</version>
100     </dependency>
101     <dependency>
102       <groupId>${project.groupId}</groupId>
103       <artifactId>netconf-topology</artifactId>
104     </dependency>
105     <dependency>
106       <groupId>${project.groupId}</groupId>
107       <artifactId>netconf-topology-config</artifactId>
108     </dependency>
109     <dependency>
110       <groupId>${project.groupId}</groupId>
111       <artifactId>netconf-tcp</artifactId>
112     </dependency>
113     <dependency>
114       <groupId>${project.groupId}</groupId>
115       <artifactId>netconf-ssh</artifactId>
116     </dependency>
117     <dependency>
118       <groupId>${project.groupId}</groupId>
119       <artifactId>netconf-topology-singleton</artifactId>
120     </dependency>
121     <dependency>
122       <groupId>${project.groupId}</groupId>
123       <artifactId>callhome-model</artifactId>
124     </dependency>
125     <dependency>
126       <groupId>${project.groupId}</groupId>
127       <artifactId>callhome-provider</artifactId>
128     </dependency>
129     <dependency>
130       <groupId>${project.groupId}</groupId>
131       <artifactId>callhome-protocol</artifactId>
132     </dependency>
133     <dependency>
134       <groupId>${project.groupId}</groupId>
135       <artifactId>netconf-connector-config</artifactId>
136     </dependency>
137     <dependency>
138       <groupId>${project.groupId}</groupId>
139       <artifactId>netconf-config</artifactId>
140     </dependency>
141   </dependencies>
142
143   <scm>
144     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
145     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
146     <tag>HEAD</tag>
147     <url>https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=summary</url>
148   </scm>
149 </project>