Merge "Fix run.sh to work from any directory."
[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>org.opendaylight.bgpcep</groupId>
79                 <artifactId>mockito-configuration</artifactId>
80                 <version>${bgpcep.version}</version>
81                 <scope>test</scope>
82             </dependency>
83             <dependency>
84                 <groupId>${project.groupId}</groupId>
85                 <artifactId>config-api</artifactId>
86                 <version>${config.version}</version>
87             </dependency>
88             <dependency>
89                 <groupId>${project.groupId}</groupId>
90                 <artifactId>config-manager</artifactId>
91                 <version>${config.version}</version>
92             </dependency>
93             <dependency>
94                 <groupId>${project.groupId}</groupId>
95                 <artifactId>config-manager</artifactId>
96                 <version>${config.version}</version>
97                 <type>test-jar</type>
98             </dependency>
99             <dependency>
100                 <groupId>${project.groupId}</groupId>
101                 <artifactId>yang-jmx-generator</artifactId>
102                 <version>${config.version}</version>
103             </dependency>
104             <dependency>
105                 <groupId>${project.groupId}</groupId>
106                 <artifactId>config-util</artifactId>
107                 <version>${config.version}</version>
108             </dependency>
109             <dependency>
110                 <groupId>${project.groupId}</groupId>
111                 <artifactId>yang-store-api</artifactId>
112                 <version>${config.version}</version>
113             </dependency>
114             <dependency>
115                 <groupId>${project.groupId}</groupId>
116                 <artifactId>yang-store-impl</artifactId>
117                 <version>${config.version}</version>
118             </dependency>
119             <dependency>
120                 <groupId>${project.groupId}</groupId>
121                 <artifactId>yang-store-impl</artifactId>
122                 <version>${config.version}</version>
123                 <type>test-jar</type>
124             </dependency>
125             <dependency>
126                 <groupId>${project.groupId}</groupId>
127                 <artifactId>yang-test</artifactId>
128                 <version>${config.version}</version>
129             </dependency>
130             <dependency>
131                 <groupId>${project.groupId}</groupId>
132                 <artifactId>netconf-api</artifactId>
133                 <version>${netconf.version}</version>
134             </dependency>
135             <dependency>
136                 <groupId>${project.groupId}</groupId>
137                 <artifactId>netconf-util</artifactId>
138                 <version>${netconf.version}</version>
139             </dependency>
140             <dependency>
141                 <groupId>${project.groupId}</groupId>
142                 <artifactId>netconf-util</artifactId>
143                 <version>${netconf.version}</version>
144                 <type>test-jar</type>
145             </dependency>
146             <dependency>
147                 <groupId>${project.groupId}</groupId>
148                 <artifactId>netconf-ssh</artifactId>
149                 <version>${netconf.version}</version>
150             </dependency>
151             <dependency>
152                 <groupId>${project.groupId}</groupId>
153                 <artifactId>netconf-ssh</artifactId>
154                 <version>${netconf.version}</version>
155                 <type>test-jar</type>
156             </dependency>
157             <dependency>
158                 <groupId>${project.groupId}</groupId>
159                 <artifactId>netconf-mapping-api</artifactId>
160                 <version>${netconf.version}</version>
161             </dependency>
162             <dependency>
163                 <groupId>${project.groupId}</groupId>
164                 <artifactId>netconf-impl</artifactId>
165                 <version>${netconf.version}</version>
166             </dependency>
167             <dependency>
168                 <groupId>${project.groupId}</groupId>
169                 <artifactId>netconf-monitoring</artifactId>
170                 <version>${netconf.version}</version>
171             </dependency>
172             <dependency>
173                 <groupId>${project.groupId}</groupId>
174                 <artifactId>ietf-netconf-monitoring</artifactId>
175                 <version>${netconf.version}</version>
176             </dependency>
177             <dependency>
178                 <groupId>org.opendaylight.controller</groupId>
179                 <artifactId>config-persister-api</artifactId>
180                 <version>${config.version}</version>
181             </dependency>
182             <dependency>
183                 <groupId>org.opendaylight.controller</groupId>
184                 <artifactId>config-persister-file-adapter</artifactId>
185                 <version>${config.version}</version>
186             </dependency>
187             <dependency>
188                 <groupId>${project.groupId}</groupId>
189                 <artifactId>netconf-client</artifactId>
190                 <version>${netconf.version}</version>
191             </dependency>
192             <dependency>
193                 <groupId>xmlunit</groupId>
194                 <artifactId>xmlunit</artifactId>
195                 <version>1.4</version>
196             </dependency>
197             <dependency>
198                 <groupId>${project.groupId}</groupId>
199                 <artifactId>config-netconf-connector</artifactId>
200                 <version>${netconf.version}</version>
201             </dependency>
202             <dependency>
203                 <groupId>${project.groupId}</groupId>
204                 <artifactId>config-persister-impl</artifactId>
205                 <version>${netconf.version}</version>
206             </dependency>
207             <dependency>
208                 <groupId>org.opendaylight.controller</groupId>
209                 <artifactId>logback-config</artifactId>
210                 <version>${config.version}</version>
211             </dependency>
212             <dependency>
213                 <groupId>com.siemens.ct.exi</groupId>
214                 <artifactId>exificient</artifactId>
215                 <version>${ct.exi.version}</version>
216             </dependency>
217         </dependencies>
218     </dependencyManagement>
219
220
221     <build>
222         <plugins>
223             <plugin>
224                 <groupId>org.apache.maven.plugins</groupId>
225                 <artifactId>maven-compiler-plugin</artifactId>
226             </plugin>
227         </plugins>
228         <pluginManagement>
229             <plugins>
230                 <plugin>
231                     <groupId>org.apache.felix</groupId>
232                     <artifactId>maven-bundle-plugin</artifactId>
233                     <version>${maven.bundle.version}</version>
234                     <extensions>true</extensions>
235                     <configuration>
236                         <instructions>
237                             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
238                         </instructions>
239                     </configuration>
240                 </plugin>
241             </plugins>
242
243         </pluginManagement>
244     </build>
245 </project>