Resolve Bug:448 - Remove yang-store api and impl.
[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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2     <modelVersion>4.0.0</modelVersion>
3
4     <parent>
5         <groupId>org.opendaylight.controller</groupId>
6         <artifactId>commons.opendaylight</artifactId>
7         <version>1.4.2-SNAPSHOT</version>
8         <relativePath>../commons/opendaylight</relativePath>
9     </parent>
10
11     <version>0.2.5-SNAPSHOT</version>
12     <artifactId>netconf-subsystem</artifactId>
13     <packaging>pom</packaging>
14     <name>${project.artifactId}</name>
15     <prerequisites>
16         <maven>3.0.4</maven>
17     </prerequisites>
18
19
20     <modules>
21         <module>netconf-api</module>
22         <module>netconf-impl</module>
23         <module>config-netconf-connector</module>
24         <module>netconf-util</module>
25         <module>config-persister-impl</module>
26         <module>netconf-mapping-api</module>
27         <module>netconf-client</module>
28         <module>netconf-ssh</module>
29         <module>netconf-monitoring</module>
30         <module>ietf-netconf-monitoring</module>
31         <module>ietf-netconf-monitoring-extension</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.4.0</maven.bundle.version>
49         <slf4j.version>1.7.2</slf4j.version>
50         <netconf.netty.version>4.0.10.Final</netconf.netty.version>
51         <salGeneratorPath>${project.build.directory}/generated-sources/sal</salGeneratorPath>
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>${project.groupId}</groupId>
76                 <artifactId>config-api</artifactId>
77                 <version>${config.version}</version>
78             </dependency>
79             <dependency>
80                 <groupId>${project.groupId}</groupId>
81                 <artifactId>config-manager</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                 <type>test-jar</type>
89             </dependency>
90             <dependency>
91                 <groupId>${project.groupId}</groupId>
92                 <artifactId>yang-jmx-generator</artifactId>
93                 <version>${config.version}</version>
94             </dependency>
95             <dependency>
96                 <groupId>${project.groupId}</groupId>
97                 <artifactId>config-util</artifactId>
98                 <version>${config.version}</version>
99             </dependency>
100             <dependency>
101                 <groupId>${project.groupId}</groupId>
102                 <artifactId>yang-test</artifactId>
103                 <version>${config.version}</version>
104             </dependency>
105             <dependency>
106                 <groupId>${project.groupId}</groupId>
107                 <artifactId>netconf-api</artifactId>
108                 <version>${netconf.version}</version>
109             </dependency>
110             <dependency>
111                 <groupId>${project.groupId}</groupId>
112                 <artifactId>netconf-util</artifactId>
113                 <version>${netconf.version}</version>
114             </dependency>
115             <dependency>
116                 <groupId>${project.groupId}</groupId>
117                 <artifactId>netconf-util</artifactId>
118                 <version>${netconf.version}</version>
119                 <type>test-jar</type>
120             </dependency>
121             <dependency>
122                 <groupId>${project.groupId}</groupId>
123                 <artifactId>netconf-ssh</artifactId>
124                 <version>${netconf.version}</version>
125             </dependency>
126             <dependency>
127                 <groupId>${project.groupId}</groupId>
128                 <artifactId>netconf-ssh</artifactId>
129                 <version>${netconf.version}</version>
130                 <type>test-jar</type>
131             </dependency>
132             <dependency>
133                 <groupId>${project.groupId}</groupId>
134                 <artifactId>netconf-mapping-api</artifactId>
135                 <version>${netconf.version}</version>
136             </dependency>
137             <dependency>
138                 <groupId>${project.groupId}</groupId>
139                 <artifactId>netconf-impl</artifactId>
140                 <version>${netconf.version}</version>
141             </dependency>
142             <dependency>
143                 <groupId>${project.groupId}</groupId>
144                 <artifactId>netconf-monitoring</artifactId>
145                 <version>${netconf.version}</version>
146             </dependency>
147             <dependency>
148                 <groupId>${project.groupId}</groupId>
149                 <artifactId>ietf-netconf-monitoring</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         </dependencies>
188     </dependencyManagement>
189
190
191     <build>
192         <plugins>
193             <plugin>
194                 <groupId>org.apache.maven.plugins</groupId>
195                 <artifactId>maven-compiler-plugin</artifactId>
196             </plugin>
197         </plugins>
198         <pluginManagement>
199             <plugins>
200                 <plugin>
201                     <groupId>org.apache.felix</groupId>
202                     <artifactId>maven-bundle-plugin</artifactId>
203                     <version>${maven.bundle.version}</version>
204                     <extensions>true</extensions>
205                     <configuration>
206                         <instructions>
207                             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
208                         </instructions>
209                     </configuration>
210                 </plugin>
211                 <plugin>
212                     <groupId>org.opendaylight.yangtools</groupId>
213                     <artifactId>yang-maven-plugin</artifactId>
214                     <version>${yangtools.version}</version>
215                     <executions>
216                         <execution>
217                             <goals>
218                                 <goal>generate-sources</goal>
219                             </goals>
220                             <configuration>
221                                 <yangFilesRootDir>src/main/yang</yangFilesRootDir>
222                                 <codeGenerators>
223                                     <generator>
224                                         <codeGeneratorClass>
225                                             org.opendaylight.yangtools.maven.sal.api.gen.plugin.CodeGeneratorImpl
226                                         </codeGeneratorClass>
227                                         <outputBaseDir>
228                                             ${salGeneratorPath}
229                                         </outputBaseDir>
230                                     </generator>
231                                     <generator>
232                                         <codeGeneratorClass>org.opendaylight.yangtools.yang.unified.doc.generator.maven.DocumentationGeneratorImpl</codeGeneratorClass>
233                                         <outputBaseDir>${project.build.directory}/site/models</outputBaseDir>
234                                     </generator>
235                                 </codeGenerators>
236                                 <inspectDependencies>true</inspectDependencies>
237                             </configuration>
238                         </execution>
239                     </executions>
240                     <dependencies>
241                         <dependency>
242                             <groupId>org.opendaylight.yangtools</groupId>
243                             <artifactId>maven-sal-api-gen-plugin</artifactId>
244                             <version>${yangtools.version}</version>
245                         </dependency>
246                     </dependencies>
247                 </plugin>
248                 <plugin>
249                     <groupId>org.codehaus.mojo</groupId>
250                     <artifactId>build-helper-maven-plugin</artifactId>
251                     <version>1.7</version>
252                     <executions>
253                         <execution>
254                             <phase>generate-sources</phase>
255                             <goals>
256                                 <goal>add-source</goal>
257                             </goals>
258                             <configuration>
259                                 <sources>
260                                     <source>${salGeneratorPath}</source>
261                                 </sources>
262                             </configuration>
263                         </execution>
264                     </executions>
265                 </plugin>
266             </plugins>
267
268         </pluginManagement>
269     </build>
270 </project>