Bug 2939: Lazily expanded CandidateNode for writes and deletes
[yangtools.git] / restconf / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!-- Copyright (c) 2013 Cisco Systems, Inc. and others. All rights reserved. This
4     program and the accompanying materials are made available under the terms of the
5     Eclipse Public License v1.0 which accompanies this distribution, and is available
6     at http://www.eclipse.org/legal/epl-v10.html -->
7 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
8     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
9
10     <parent>
11         <groupId>org.opendaylight.yangtools</groupId>
12         <artifactId>yangtools-parent</artifactId>
13         <version>0.7.0-SNAPSHOT</version>
14         <relativePath>../common/parent</relativePath>
15     </parent>
16     <modelVersion>4.0.0</modelVersion>
17     <artifactId>restconf-parent</artifactId>
18     <packaging>pom</packaging>
19
20     <modules>
21         <module>restconf-common</module>
22         <module>restconf-util</module>
23         <module>restconf-jaxrs-api</module>
24         <module>restconf-test-service</module>
25         <module>restconf-client-api</module>
26         <module>restconf-client-impl</module>
27     </modules>
28
29     <build>
30         <plugins>
31             <plugin>
32                 <groupId>org.apache.felix</groupId>
33                 <artifactId>maven-bundle-plugin</artifactId>
34             </plugin>
35             <plugin>
36                 <groupId>org.apache.maven.plugins</groupId>
37                 <artifactId>maven-javadoc-plugin</artifactId>
38                 <configuration>
39                     <stylesheet>maven</stylesheet>
40                 </configuration>
41                 <executions>
42                     <execution>
43                         <goals>
44                             <goal>aggregate</goal>
45                         </goals>
46                         <phase>site</phase>
47                     </execution>
48                 </executions>
49             </plugin>
50             <plugin>
51                 <groupId>org.apache.maven.plugins</groupId>
52                 <artifactId>maven-checkstyle-plugin</artifactId>
53             </plugin>
54         </plugins>
55     </build>
56 </project>