00a9d22d39a380e4a7067c5d3d7828a3720f395c
[yangtools.git] / restconf / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
5
6  This program and the accompanying materials are made available under the
7  terms of the Eclipse Public License v1.0 which accompanies this distribution,
8  and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <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">
11
12     <parent>
13         <groupId>org.opendaylight.yangtools</groupId>
14         <artifactId>yangtools</artifactId>
15         <version>0.6.1-SNAPSHOT</version>
16     </parent>
17
18     <modelVersion>4.0.0</modelVersion>
19     <artifactId>restconf-parent</artifactId>
20     <packaging>pom</packaging>
21
22     <modules>
23         <module>restconf-client-api</module>
24     </modules>
25
26     <dependencyManagement>
27         <dependencies>
28             <dependency>
29                 <groupId>${project.groupId}</groupId>
30                 <artifactId>restconf-client-api</artifactId>
31                 <version>${project.version}</version>
32             </dependency>
33
34             <dependency>
35                 <groupId>${project.groupId}</groupId>
36                 <artifactId>yang-common</artifactId>
37                 <version>${project.version}</version>
38             </dependency>
39             <dependency>
40                 <groupId>${project.groupId}</groupId>
41                 <artifactId>yang-data-api</artifactId>
42                 <version>${project.version}</version>
43             </dependency>
44             <dependency>
45                 <groupId>${project.groupId}</groupId>
46                 <artifactId>yang-data-impl</artifactId>
47                 <version>${project.version}</version>
48             </dependency>
49             <dependency>
50                 <groupId>${project.groupId}</groupId>
51                 <artifactId>yang-model-api</artifactId>
52                 <version>${project.version}</version>
53             </dependency>
54             <dependency>
55                 <groupId>${project.groupId}</groupId>
56                 <artifactId>yang-binding</artifactId>
57                 <version>${project.version}</version>
58             </dependency>
59         </dependencies>
60     </dependencyManagement>
61
62     <build>
63         <plugins>
64             <plugin>
65                 <groupId>org.apache.felix</groupId>
66                 <artifactId>maven-bundle-plugin</artifactId>
67             </plugin>
68             <plugin>
69                 <groupId>org.apache.maven.plugins</groupId>
70                 <artifactId>maven-javadoc-plugin</artifactId>
71                 <configuration>
72                     <stylesheet>maven</stylesheet>
73                 </configuration>
74                 <executions>
75                     <execution>
76                         <goals>
77                             <goal>aggregate</goal>
78                         </goals>
79                         <phase>site</phase>
80                     </execution>
81                 </executions>
82             </plugin>
83         </plugins>
84         <pluginManagement>
85             <plugins>
86                 <plugin>
87                     <groupId>org.apache.felix</groupId>
88                     <artifactId>maven-bundle-plugin</artifactId>
89                     <version>${maven.bundle.version}</version>
90                     <extensions>true</extensions>
91                 </plugin>
92                 <plugin>
93                     <groupId>org.eclipse.m2e</groupId>
94                     <artifactId>lifecycle-mapping</artifactId>
95                     <version>1.0.0</version>
96                     <configuration>
97                         <lifecycleMappingMetadata>
98                             <pluginExecutions>
99                                 <pluginExecution>
100                                     <pluginExecutionFilter>
101                                         <groupId>org.apache.felix</groupId>
102                                         <artifactId>maven-bundle-plugin</artifactId>
103                                         <versionRange>[1.0,)</versionRange>
104                                         <goals>
105                                             <goal>manifest</goal>
106                                         </goals>
107                                     </pluginExecutionFilter>
108                                     <action>
109                                         <execute />
110                                     </action>
111                                 </pluginExecution>
112                             </pluginExecutions>
113                         </lifecycleMappingMetadata>
114                     </configuration>
115                 </plugin>
116             </plugins>
117         </pluginManagement>
118     </build>
119
120     <reporting>
121         <plugins>
122             <plugin>
123                 <groupId>org.codehaus.mojo</groupId>
124                 <artifactId>findbugs-maven-plugin</artifactId>
125                 <version>2.5.3</version>
126                 <configuration>
127                     <effort>Max</effort>
128                     <threshold>Low</threshold>
129                     <goal>site</goal>
130                 </configuration>
131             </plugin>
132             <plugin>
133                 <groupId>org.codehaus.mojo</groupId>
134                 <artifactId>jdepend-maven-plugin</artifactId>
135                 <version>2.0-beta-2</version>
136             </plugin>
137         </plugins>
138     </reporting>
139 </project>
140