Remove unnecessary uses of odlparent properties
[netconf.git] / features / netconf / 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   <parent>
5     <groupId>org.opendaylight.odlparent</groupId>
6     <artifactId>features-parent</artifactId>
7     <version>1.6.0-SNAPSHOT</version>
8     <relativePath/>
9   </parent>
10   <!-- FIXME: Convert to features-parent -->
11   <groupId>org.opendaylight.netconf</groupId>
12   <artifactId>features-netconf</artifactId>
13   <version>1.0.0-SNAPSHOT</version>
14   <packaging>jar</packaging>
15
16   <properties>
17     <aaa.version>0.3.0-SNAPSHOT</aaa.version>
18     <commons.opendaylight.version>1.6.0-SNAPSHOT</commons.opendaylight.version>
19     <controller.mdsal.version>1.3.0-SNAPSHOT</controller.mdsal.version>
20     <config.version>0.4.0-SNAPSHOT</config.version>
21     <exi.nagasena.version>0000.0002.0053.0</exi.nagasena.version>
22     <features.test.version>1.6.0-SNAPSHOT</features.test.version>
23     <mdsal.model.version>0.8.0-SNAPSHOT</mdsal.model.version>
24     <netconf.version>1.0.0-SNAPSHOT</netconf.version>
25     <protocol-framework.version>0.7.0-SNAPSHOT</protocol-framework.version>
26     <yangtools.version>0.8.0-SNAPSHOT</yangtools.version>
27     <surefire.version>2.15</surefire.version>
28     <sshd-core.version>0.14.0</sshd-core.version>
29
30     <features.file>features.xml</features.file>
31     <config.configfile.directory>etc/opendaylight/karaf</config.configfile.directory>
32     <config.netconf.client.configfile>01-netconf.xml</config.netconf.client.configfile>
33     <config.netconf.mdsal.configfile>08-mdsal-netconf.xml</config.netconf.mdsal.configfile>
34   </properties>
35
36   <dependencyManagement>
37     <dependencies>
38       <dependency>
39         <groupId>org.opendaylight.controller</groupId>
40         <artifactId>config-artifacts</artifactId>
41         <version>${config.version}</version>
42         <type>pom</type>
43         <scope>import</scope>
44       </dependency>
45       <dependency>
46         <groupId>org.opendaylight.controller</groupId>
47         <artifactId>mdsal-artifacts</artifactId>
48         <version>${controller.mdsal.version}</version>
49         <type>pom</type>
50         <scope>import</scope>
51       </dependency>
52       <dependency>
53         <groupId>org.opendaylight.mdsal.model</groupId>
54         <artifactId>mdsal-model-artifacts</artifactId>
55         <version>${mdsal.model.version}</version>
56         <type>pom</type>
57         <scope>import</scope>
58       </dependency>
59       <dependency>
60         <groupId>org.opendaylight.netconf</groupId>
61         <artifactId>netconf-artifacts</artifactId>
62         <version>${netconf.version}</version>
63         <type>pom</type>
64         <scope>import</scope>
65       </dependency>
66       <dependency>
67         <groupId>org.opendaylight.yangtools</groupId>
68         <artifactId>yangtools-artifacts</artifactId>
69         <version>${yangtools.version}</version>
70         <type>pom</type>
71         <scope>import</scope>
72       </dependency>
73     </dependencies>
74   </dependencyManagement>
75
76   <dependencies>
77     <dependency>
78       <groupId>org.opendaylight.controller</groupId>
79       <artifactId>features-protocol-framework</artifactId>
80       <version>${protocol-framework.version}</version>
81       <classifier>features</classifier>
82       <type>xml</type>
83       <scope>runtime</scope>
84     </dependency>
85     <dependency>
86       <groupId>org.opendaylight.aaa</groupId>
87       <artifactId>features-aaa</artifactId>
88       <version>${aaa.version}</version>
89       <classifier>features</classifier>
90       <type>xml</type>
91     </dependency>
92     <dependency>
93       <groupId>${project.groupId}</groupId>
94       <artifactId>aaa-authn-odl-plugin</artifactId>
95     </dependency>
96     <dependency>
97       <groupId>${project.groupId}</groupId>
98       <artifactId>netconf-api</artifactId>
99     </dependency>
100     <dependency>
101       <groupId>${project.groupId}</groupId>
102       <artifactId>netconf-config</artifactId>
103     </dependency>
104     <dependency>
105       <groupId>${project.groupId}</groupId>
106       <artifactId>netconf-auth</artifactId>
107     </dependency>
108     <dependency>
109       <groupId>${project.groupId}</groupId>
110       <artifactId>netconf-notifications-api</artifactId>
111     </dependency>
112     <dependency>
113       <groupId>${project.groupId}</groupId>
114       <artifactId>netconf-notifications-impl</artifactId>
115     </dependency>
116     <dependency>
117       <groupId>${project.groupId}</groupId>
118       <artifactId>netconf-ssh</artifactId>
119     </dependency>
120     <dependency>
121       <groupId>${project.groupId}</groupId>
122       <artifactId>mdsal-netconf-notification</artifactId>
123     </dependency>
124     <dependency>
125       <groupId>${project.groupId}</groupId>
126       <artifactId>ietf-netconf</artifactId>
127     </dependency>
128     <dependency>
129       <groupId>${project.groupId}</groupId>
130       <artifactId>ietf-netconf-monitoring</artifactId>
131     </dependency>
132     <dependency>
133       <groupId>${project.groupId}</groupId>
134       <artifactId>ietf-netconf-monitoring-extension</artifactId>
135     </dependency>
136     <dependency>
137       <groupId>${project.groupId}</groupId>
138       <artifactId>ietf-netconf-notifications</artifactId>
139     </dependency>
140     <dependency>
141       <groupId>org.opendaylight.mdsal.model</groupId>
142       <artifactId>ietf-inet-types</artifactId>
143     </dependency>
144     <dependency>
145       <groupId>org.opendaylight.mdsal.model</groupId>
146       <artifactId>ietf-yang-types</artifactId>
147     </dependency>
148       <dependency>
149           <groupId>org.opendaylight.yangtools</groupId>
150           <artifactId>yang-model-api</artifactId>
151       </dependency>
152     <dependency>
153       <groupId>${project.groupId}</groupId>
154       <artifactId>netconf-mapping-api</artifactId>
155     </dependency>
156     <dependency>
157       <groupId>${project.groupId}</groupId>
158       <artifactId>netconf-util</artifactId>
159     </dependency>
160     <dependency>
161       <groupId>${project.groupId}</groupId>
162       <artifactId>netconf-impl</artifactId>
163     </dependency>
164     <dependency>
165       <groupId>org.opendaylight.netconf</groupId>
166       <artifactId>netconf-config-dispatcher</artifactId>
167     </dependency>
168     <dependency>
169       <groupId>org.opendaylight.controller</groupId>
170       <artifactId>config-manager-facade-xml</artifactId>
171     </dependency>
172     <dependency>
173       <groupId>${project.groupId}</groupId>
174       <artifactId>config-netconf-connector</artifactId>
175     </dependency>
176     <dependency>
177       <groupId>${project.groupId}</groupId>
178       <artifactId>netconf-netty-util</artifactId>
179     </dependency>
180     <dependency>
181       <groupId>org.apache.sshd</groupId>
182       <artifactId>sshd-core</artifactId>
183       <version>${sshd-core.version}</version>
184     </dependency>
185     <dependency>
186       <groupId>openexi</groupId>
187       <artifactId>nagasena</artifactId>
188       <version>${exi.nagasena.version}</version>
189     </dependency>
190     <dependency>
191       <groupId>io.netty</groupId>
192       <artifactId>netty-codec</artifactId>
193     </dependency>
194     <dependency>
195       <groupId>io.netty</groupId>
196       <artifactId>netty-handler</artifactId>
197     </dependency>
198     <dependency>
199       <groupId>io.netty</groupId>
200       <artifactId>netty-common</artifactId>
201     </dependency>
202     <dependency>
203       <groupId>io.netty</groupId>
204       <artifactId>netty-buffer</artifactId>
205     </dependency>
206     <dependency>
207       <groupId>io.netty</groupId>
208       <artifactId>netty-transport</artifactId>
209     </dependency>
210     <dependency>
211       <groupId>org.bouncycastle</groupId>
212       <artifactId>bcpkix-jdk15on</artifactId>
213     </dependency>
214     <dependency>
215       <groupId>org.bouncycastle</groupId>
216       <artifactId>bcprov-jdk15on</artifactId>
217     </dependency>
218     <dependency>
219       <groupId>${project.groupId}</groupId>
220       <artifactId>netconf-client</artifactId>
221     </dependency>
222     <dependency>
223       <groupId>${project.groupId}</groupId>
224       <artifactId>netconf-config</artifactId>
225       <version>${netconf.version}</version>
226       <type>xml</type>
227       <classifier>config</classifier>
228     </dependency>
229     <dependency>
230       <groupId>${project.groupId}</groupId>
231       <artifactId>netconf-connector-config</artifactId>
232       <version>${netconf.version}</version>
233       <type>xml</type>
234       <classifier>config</classifier>
235     </dependency>
236     <dependency>
237       <groupId>${project.groupId}</groupId>
238       <artifactId>netconf-monitoring</artifactId>
239     </dependency>
240     <dependency>
241       <groupId>${project.groupId}</groupId>
242       <artifactId>mdsal-netconf-monitoring</artifactId>
243     </dependency>
244     <dependency>
245       <groupId>${project.groupId}</groupId>
246       <artifactId>mdsal-netconf-connector</artifactId>
247     </dependency>
248     <dependency>
249       <groupId>${project.groupId}</groupId>
250       <artifactId>netconf-mdsal-config</artifactId>
251       <classifier>config</classifier>
252       <type>xml</type>
253     </dependency>
254     <!-- dependency for opendaylight-karaf-empty for use by testing -->
255     <dependency>
256       <groupId>org.opendaylight.controller</groupId>
257       <artifactId>opendaylight-karaf-empty</artifactId>
258       <version>${commons.opendaylight.version}</version>
259       <scope>test</scope>
260       <type>zip</type>
261     </dependency>
262   </dependencies>
263
264   <scm>
265     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
266     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
267     <tag>HEAD</tag>
268     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
269   </scm>
270 </project>