Merge "Make configuration push timeout configurable"
[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         <module>netconf-monitoring</module>
33         <module>ietf-netconf-monitoring</module>
34         <module>ietf-netconf-monitoring-extension</module>
35     </modules>
36
37     <profiles>
38         <profile>
39            <id>integrationtests</id>
40            <activation>
41                <activeByDefault>false</activeByDefault>
42            </activation>
43             <modules>
44               <module>netconf-it</module>
45             </modules>
46         </profile>
47     </profiles>
48
49     <properties>
50         <osgi.version>5.0.0</osgi.version>
51         <maven.bundle.version>2.4.0</maven.bundle.version>
52         <slf4j.version>1.7.2</slf4j.version>
53         <netconf.netty.version>4.0.10.Final</netconf.netty.version>
54         <ct.exi.version>0.9.2</ct.exi.version>
55     </properties>
56
57     <dependencies>
58         <dependency>
59             <groupId>junit</groupId>
60             <artifactId>junit</artifactId>
61             <scope>test</scope>
62         </dependency>
63         <dependency>
64             <groupId>ch.qos.logback</groupId>
65             <artifactId>logback-classic</artifactId>
66             <scope>test</scope>
67         </dependency>
68     </dependencies>
69
70     <dependencyManagement>
71         <dependencies>
72             <dependency>
73                 <groupId>org.osgi</groupId>
74                 <artifactId>org.osgi.core</artifactId>
75                 <version>${osgi.version}</version>
76             </dependency>
77             <dependency>
78                 <groupId>${project.groupId}</groupId>
79                 <artifactId>config-api</artifactId>
80                 <version>${config.version}</version>
81             </dependency>
82             <dependency>
83                 <groupId>${project.groupId}</groupId>
84                 <artifactId>config-manager</artifactId>
85                 <version>${config.version}</version>
86             </dependency>
87             <dependency>
88                 <groupId>${project.groupId}</groupId>
89                 <artifactId>config-manager</artifactId>
90                 <version>${config.version}</version>
91                 <type>test-jar</type>
92             </dependency>
93             <dependency>
94                 <groupId>${project.groupId}</groupId>
95                 <artifactId>yang-jmx-generator</artifactId>
96                 <version>${config.version}</version>
97             </dependency>
98             <dependency>
99                 <groupId>${project.groupId}</groupId>
100                 <artifactId>config-util</artifactId>
101                 <version>${config.version}</version>
102             </dependency>
103             <dependency>
104                 <groupId>${project.groupId}</groupId>
105                 <artifactId>yang-store-api</artifactId>
106                 <version>${config.version}</version>
107             </dependency>
108             <dependency>
109                 <groupId>${project.groupId}</groupId>
110                 <artifactId>yang-store-impl</artifactId>
111                 <version>${config.version}</version>
112             </dependency>
113             <dependency>
114                 <groupId>${project.groupId}</groupId>
115                 <artifactId>yang-store-impl</artifactId>
116                 <version>${config.version}</version>
117                 <type>test-jar</type>
118             </dependency>
119             <dependency>
120                 <groupId>${project.groupId}</groupId>
121                 <artifactId>yang-test</artifactId>
122                 <version>${config.version}</version>
123             </dependency>
124             <dependency>
125                 <groupId>${project.groupId}</groupId>
126                 <artifactId>netconf-api</artifactId>
127                 <version>${netconf.version}</version>
128             </dependency>
129             <dependency>
130                 <groupId>${project.groupId}</groupId>
131                 <artifactId>netconf-util</artifactId>
132                 <version>${netconf.version}</version>
133             </dependency>
134             <dependency>
135                 <groupId>${project.groupId}</groupId>
136                 <artifactId>netconf-util</artifactId>
137                 <version>${netconf.version}</version>
138                 <type>test-jar</type>
139             </dependency>
140             <dependency>
141                 <groupId>${project.groupId}</groupId>
142                 <artifactId>netconf-ssh</artifactId>
143                 <version>${netconf.version}</version>
144             </dependency>
145             <dependency>
146                 <groupId>${project.groupId}</groupId>
147                 <artifactId>netconf-ssh</artifactId>
148                 <version>${netconf.version}</version>
149                 <type>test-jar</type>
150             </dependency>
151             <dependency>
152                 <groupId>${project.groupId}</groupId>
153                 <artifactId>netconf-mapping-api</artifactId>
154                 <version>${netconf.version}</version>
155             </dependency>
156             <dependency>
157                 <groupId>${project.groupId}</groupId>
158                 <artifactId>netconf-impl</artifactId>
159                 <version>${netconf.version}</version>
160             </dependency>
161             <dependency>
162                 <groupId>${project.groupId}</groupId>
163                 <artifactId>netconf-monitoring</artifactId>
164                 <version>${netconf.version}</version>
165             </dependency>
166             <dependency>
167                 <groupId>${project.groupId}</groupId>
168                 <artifactId>ietf-netconf-monitoring</artifactId>
169                 <version>${netconf.version}</version>
170             </dependency>
171             <dependency>
172                 <groupId>org.opendaylight.controller</groupId>
173                 <artifactId>config-persister-api</artifactId>
174                 <version>${config.version}</version>
175             </dependency>
176             <dependency>
177                 <groupId>org.opendaylight.controller</groupId>
178                 <artifactId>config-persister-file-adapter</artifactId>
179                 <version>${config.version}</version>
180             </dependency>
181             <dependency>
182                 <groupId>${project.groupId}</groupId>
183                 <artifactId>netconf-client</artifactId>
184                 <version>${netconf.version}</version>
185             </dependency>
186             <dependency>
187                 <groupId>xmlunit</groupId>
188                 <artifactId>xmlunit</artifactId>
189                 <version>1.4</version>
190             </dependency>
191             <dependency>
192                 <groupId>${project.groupId}</groupId>
193                 <artifactId>config-netconf-connector</artifactId>
194                 <version>${netconf.version}</version>
195             </dependency>
196             <dependency>
197                 <groupId>${project.groupId}</groupId>
198                 <artifactId>config-persister-impl</artifactId>
199                 <version>${netconf.version}</version>
200             </dependency>
201             <dependency>
202                 <groupId>org.opendaylight.controller</groupId>
203                 <artifactId>logback-config</artifactId>
204                 <version>${config.version}</version>
205             </dependency>
206             <dependency>
207                 <groupId>com.siemens.ct.exi</groupId>
208                 <artifactId>exificient</artifactId>
209                 <version>${ct.exi.version}</version>
210             </dependency>
211         </dependencies>
212     </dependencyManagement>
213
214
215     <build>
216         <plugins>
217             <plugin>
218                 <groupId>org.apache.maven.plugins</groupId>
219                 <artifactId>maven-compiler-plugin</artifactId>
220             </plugin>
221         </plugins>
222         <pluginManagement>
223             <plugins>
224                 <plugin>
225                     <groupId>org.apache.felix</groupId>
226                     <artifactId>maven-bundle-plugin</artifactId>
227                     <version>${maven.bundle.version}</version>
228                     <extensions>true</extensions>
229                     <configuration>
230                         <instructions>
231                             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
232                         </instructions>
233                     </configuration>
234                 </plugin>
235             </plugins>
236
237         </pluginManagement>
238     </build>
239 </project>