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