Merge "creating a default subnet"
[controller.git] / opendaylight / md-sal / sal-netconf-connector / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2     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.controller</groupId>
6         <artifactId>sal-parent</artifactId>
7         <version>1.0-SNAPSHOT</version>
8     </parent>
9     <properties>
10         <netconf.version>0.2.3-SNAPSHOT</netconf.version>
11     </properties>
12     <artifactId>sal-netconf-connector</artifactId>
13     <scm>
14         <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
15         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
16         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
17     </scm>
18
19     <dependencies>
20         <dependency>
21             <groupId>${project.groupId}</groupId>
22             <artifactId>sal-connector-api</artifactId>
23         </dependency>
24         <dependency>
25             <groupId>${project.groupId}</groupId>
26             <artifactId>sal-common-util</artifactId>
27             <version>1.0-SNAPSHOT</version>
28         </dependency>
29         <dependency>
30             <groupId>org.eclipse.xtend</groupId>
31             <artifactId>org.eclipse.xtend.lib</artifactId>
32         </dependency>
33         <dependency>
34             <groupId>org.opendaylight.controller</groupId>
35             <artifactId>netconf-client</artifactId>
36             <version>${netconf.version}</version>
37         </dependency>
38         <dependency>
39             <groupId>org.opendaylight.yangtools</groupId>
40             <artifactId>yang-data-impl</artifactId>
41             <version>0.5.9-SNAPSHOT</version>
42         </dependency>
43         <dependency>
44             <groupId>junit</groupId>
45             <artifactId>junit</artifactId>
46             <scope>test</scope>
47         </dependency>
48         <dependency>
49             <groupId>${project.groupId}</groupId>
50             <artifactId>yang-test</artifactId>
51             <version>${netconf.version}</version>
52             <scope>test</scope>
53         </dependency>
54         <dependency>
55             <groupId>${project.groupId}</groupId>
56             <artifactId>config-api</artifactId>
57             <version>${netconf.version}</version>
58             <scope>test</scope>
59         </dependency>
60         <dependency>
61             <groupId>${project.groupId}</groupId>
62             <artifactId>config-util</artifactId>
63             <version>${netconf.version}</version>
64             <scope>test</scope>
65         </dependency>
66         <dependency>
67             <groupId>${project.groupId}</groupId>
68             <artifactId>yang-store-api</artifactId>
69             <version>${netconf.version}</version>
70             <scope>test</scope>
71         </dependency>
72         <dependency>
73             <groupId>${project.groupId}</groupId>
74             <artifactId>netconf-api</artifactId>
75             <version>${netconf.version}</version>
76             <scope>test</scope>
77         </dependency>
78         <dependency>
79             <groupId>org.opendaylight.bgpcep</groupId>
80             <artifactId>util</artifactId>
81             <scope>test</scope>
82             <version>0.3.0-SNAPSHOT</version>
83         </dependency>
84         <dependency>
85             <groupId>${project.groupId}</groupId>
86             <artifactId>netconf-client</artifactId>
87             <scope>test</scope>
88             <version>${netconf.version}</version>
89         </dependency>
90         <dependency>
91             <groupId>${project.groupId}</groupId>
92             <artifactId>config-netconf-connector</artifactId>
93             <scope>test</scope>
94             <version>${netconf.version}</version>
95         </dependency>
96         <dependency>
97             <groupId>${project.groupId}</groupId>
98             <artifactId>yang-test</artifactId>
99             <scope>test</scope>
100             <version>${netconf.version}</version>
101         </dependency>
102         <dependency>
103             <groupId>${project.groupId}</groupId>
104             <artifactId>config-manager</artifactId>
105             <scope>test</scope>
106             <version>${netconf.version}</version>
107         </dependency>
108         <dependency>
109             <groupId>${project.groupId}</groupId>
110             <artifactId>config-persister-impl</artifactId>
111             <scope>test</scope>
112             <version>${netconf.version}</version>
113         </dependency>
114         <dependency>
115             <groupId>${project.groupId}</groupId>
116             <artifactId>config-manager</artifactId>
117             <scope>test</scope>
118             <type>test-jar</type>
119             <version>${netconf.version}</version>
120         </dependency>
121         <dependency>
122             <groupId>${project.groupId}</groupId>
123             <artifactId>netconf-impl</artifactId>
124             <scope>test</scope>
125             <version>${netconf.version}</version>
126         </dependency>
127         <dependency>
128             <groupId>${project.groupId}</groupId>
129             <artifactId>netconf-mapping-api</artifactId>
130             <scope>test</scope>
131             <version>${netconf.version}</version>
132         </dependency>
133         <dependency>
134             <groupId>${project.groupId}</groupId>
135             <artifactId>netconf-util</artifactId>
136             <scope>test</scope>
137             <type>test-jar</type>
138             <version>${netconf.version}</version>
139         </dependency>
140         <dependency>
141             <groupId>${project.groupId}</groupId>
142             <artifactId>yang-store-impl</artifactId>
143             <scope>test</scope>
144             <version>${netconf.version}</version>
145         </dependency>
146         <dependency>
147             <groupId>${project.groupId}</groupId>
148             <artifactId>yang-store-impl</artifactId>
149             <scope>test</scope>
150             <type>test-jar</type>
151             <version>${netconf.version}</version>
152         </dependency>
153         <dependency>
154             <groupId>org.opendaylight.controller</groupId>
155             <artifactId>logback-config</artifactId>
156             <scope>test</scope>
157             <version>${netconf.version}</version>
158         </dependency>
159         <dependency>
160             <groupId>org.mockito</groupId>
161             <artifactId>mockito-all</artifactId>
162             <scope>test</scope>
163         </dependency>
164         <dependency>
165             <groupId>org.slf4j</groupId>
166             <artifactId>slf4j-api</artifactId>
167         </dependency>
168     </dependencies>
169
170     <packaging>bundle</packaging>
171 </project>