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