Merge "Fixed handshake issues with SSH Netconf client"
[controller.git] / opendaylight / netconf / 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
5     <parent>
6         <groupId>org.opendaylight.controller</groupId>
7         <artifactId>commons.opendaylight</artifactId>
8         <version>1.4.1-SNAPSHOT</version>
9         <relativePath>../commons/opendaylight</relativePath>
10     </parent>
11
12     <version>0.2.3-SNAPSHOT</version>
13     <artifactId>netconf-subsystem</artifactId>
14     <packaging>pom</packaging>
15     <name>${project.artifactId}</name>
16     <prerequisites>
17         <maven>3.0.4</maven>
18     </prerequisites>
19
20
21     <modules>
22         <module>netconf-api</module>
23         <module>netconf-impl</module>
24         <module>config-netconf-connector</module>
25         <module>netconf-util</module>
26         <module>config-persister-impl</module>
27         <module>netconf-mapping-api</module>
28         <module>netconf-client</module>
29         <module>netconf-ssh</module>
30         <module>../../third-party/ganymed</module>
31         <module>../../third-party/com.siemens.ct.exi</module>
32     </modules>
33
34     <profiles>
35         <profile>
36            <id>integrationtests</id>
37            <activation>
38                <activeByDefault>false</activeByDefault>
39            </activation>
40             <modules>
41               <module>netconf-it</module>
42             </modules>
43         </profile>
44     </profiles>
45
46     <properties>
47         <osgi.version>5.0.0</osgi.version>
48         <maven.bundle.version>2.3.7</maven.bundle.version>
49         <slf4j.version>1.7.2</slf4j.version>
50         <netconf.netty.version>4.0.10.Final</netconf.netty.version>
51         <ct.exi.version>0.9.2</ct.exi.version>
52     </properties>
53
54     <dependencies>
55         <dependency>
56             <groupId>junit</groupId>
57             <artifactId>junit</artifactId>
58             <scope>test</scope>
59         </dependency>
60         <dependency>
61             <groupId>ch.qos.logback</groupId>
62             <artifactId>logback-classic</artifactId>
63             <scope>test</scope>
64         </dependency>
65     </dependencies>
66
67     <dependencyManagement>
68         <dependencies>
69             <dependency>
70                 <groupId>org.osgi</groupId>
71                 <artifactId>org.osgi.core</artifactId>
72                 <version>${osgi.version}</version>
73             </dependency>
74             <dependency>
75                 <groupId>org.opendaylight.bgpcep</groupId>
76                 <artifactId>mockito-configuration</artifactId>
77                 <version>${bgpcep.version}</version>
78                 <scope>test</scope>
79             </dependency>
80             <dependency>
81                 <groupId>${project.groupId}</groupId>
82                 <artifactId>config-api</artifactId>
83                 <version>${config.version}</version>
84             </dependency>
85             <dependency>
86                 <groupId>${project.groupId}</groupId>
87                 <artifactId>config-manager</artifactId>
88                 <version>${config.version}</version>
89             </dependency>
90             <dependency>
91                 <groupId>${project.groupId}</groupId>
92                 <artifactId>config-manager</artifactId>
93                 <version>${config.version}</version>
94                 <type>test-jar</type>
95             </dependency>
96             <dependency>
97                 <groupId>${project.groupId}</groupId>
98                 <artifactId>yang-jmx-generator</artifactId>
99                 <version>${config.version}</version>
100             </dependency>
101             <dependency>
102                 <groupId>${project.groupId}</groupId>
103                 <artifactId>config-util</artifactId>
104                 <version>${config.version}</version>
105             </dependency>
106             <dependency>
107                 <groupId>${project.groupId}</groupId>
108                 <artifactId>yang-store-api</artifactId>
109                 <version>${config.version}</version>
110             </dependency>
111             <dependency>
112                 <groupId>${project.groupId}</groupId>
113                 <artifactId>yang-store-impl</artifactId>
114                 <version>${config.version}</version>
115             </dependency>
116             <dependency>
117                 <groupId>${project.groupId}</groupId>
118                 <artifactId>yang-store-impl</artifactId>
119                 <version>${config.version}</version>
120                 <type>test-jar</type>
121             </dependency>
122             <dependency>
123                 <groupId>${project.groupId}</groupId>
124                 <artifactId>yang-test</artifactId>
125                 <version>${config.version}</version>
126             </dependency>
127             <dependency>
128                 <groupId>${project.groupId}</groupId>
129                 <artifactId>netconf-api</artifactId>
130                 <version>${netconf.version}</version>
131             </dependency>
132             <dependency>
133                 <groupId>${project.groupId}</groupId>
134                 <artifactId>netconf-util</artifactId>
135                 <version>${netconf.version}</version>
136             </dependency>
137             <dependency>
138                 <groupId>${project.groupId}</groupId>
139                 <artifactId>netconf-util</artifactId>
140                 <version>${netconf.version}</version>
141                 <type>test-jar</type>
142             </dependency>
143             <dependency>
144                 <groupId>${project.groupId}</groupId>
145                 <artifactId>netconf-ssh</artifactId>
146                 <version>${netconf.version}</version>
147             </dependency>
148             <dependency>
149                 <groupId>${project.groupId}</groupId>
150                 <artifactId>netconf-mapping-api</artifactId>
151                 <version>${netconf.version}</version>
152             </dependency>
153             <dependency>
154                 <groupId>${project.groupId}</groupId>
155                 <artifactId>netconf-impl</artifactId>
156                 <version>${netconf.version}</version>
157             </dependency>
158             <dependency>
159                 <groupId>org.opendaylight.controller</groupId>
160                 <artifactId>config-persister-api</artifactId>
161                 <version>${config.version}</version>
162             </dependency>
163             <dependency>
164                 <groupId>org.opendaylight.controller</groupId>
165                 <artifactId>config-persister-file-adapter</artifactId>
166                 <version>${config.version}</version>
167             </dependency>
168             <dependency>
169                 <groupId>${project.groupId}</groupId>
170                 <artifactId>netconf-client</artifactId>
171                 <version>${netconf.version}</version>
172             </dependency>
173             <dependency>
174                 <groupId>xmlunit</groupId>
175                 <artifactId>xmlunit</artifactId>
176                 <version>1.4</version>
177             </dependency>
178             <dependency>
179                 <groupId>${project.groupId}</groupId>
180                 <artifactId>config-netconf-connector</artifactId>
181                 <version>${netconf.version}</version>
182             </dependency>
183             <dependency>
184                 <groupId>${project.groupId}</groupId>
185                 <artifactId>config-persister-impl</artifactId>
186                 <version>${netconf.version}</version>
187             </dependency>
188             <dependency>
189                 <groupId>org.opendaylight.controller</groupId>
190                 <artifactId>logback-config</artifactId>
191                 <version>${config.version}</version>
192             </dependency>
193             <dependency>
194                 <groupId>com.siemens.ct.exi</groupId>
195                 <artifactId>exificient</artifactId>
196                 <version>${ct.exi.version}</version>
197             </dependency>
198         </dependencies>
199     </dependencyManagement>
200
201
202     <build>
203         <plugins>
204             <plugin>
205                 <groupId>org.apache.maven.plugins</groupId>
206                 <artifactId>maven-compiler-plugin</artifactId>
207             </plugin>
208         </plugins>
209         <pluginManagement>
210             <plugins>
211                 <plugin>
212                     <groupId>org.apache.felix</groupId>
213                     <artifactId>maven-bundle-plugin</artifactId>
214                     <version>${maven.bundle.version}</version>
215                     <extensions>true</extensions>
216                     <configuration>
217                         <instructions>
218                             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
219                         </instructions>
220                     </configuration>
221                 </plugin>
222             </plugins>
223
224         </pluginManagement>
225     </build>
226 </project>