Resolved problem - schema node was not found for XML translation
[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"
11     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12
13     <parent>
14         <groupId>org.opendaylight.yangtools</groupId>
15         <artifactId>yangtools</artifactId>
16         <version>0.6.0-SNAPSHOT</version>
17     </parent>
18
19     <modelVersion>4.0.0</modelVersion>
20     <artifactId>restconf-parent</artifactId>
21     <packaging>pom</packaging>
22
23     <modules>
24         <module>restconf-client-api</module>
25     </modules>
26
27     <dependencyManagement>
28         <dependencies>
29             <dependency>
30                 <groupId>${project.groupId}</groupId>
31                 <artifactId>restconf-client-api</artifactId>
32                 <version>${project.version}</version>
33             </dependency>
34
35             <dependency>
36                 <groupId>${project.groupId}</groupId>
37                 <artifactId>yang-common</artifactId>
38                 <version>${project.version}</version>
39             </dependency>
40             <dependency>
41                 <groupId>${project.groupId}</groupId>
42                 <artifactId>yang-data-api</artifactId>
43                 <version>${project.version}</version>
44             </dependency>
45             <dependency>
46                 <groupId>${project.groupId}</groupId>
47                 <artifactId>yang-data-impl</artifactId>
48                 <version>${project.version}</version>
49             </dependency>
50             <dependency>
51                 <groupId>${project.groupId}</groupId>
52                 <artifactId>yang-model-api</artifactId>
53                 <version>${project.version}</version>
54             </dependency>
55             <dependency>
56                 <groupId>${project.groupId}</groupId>
57                 <artifactId>yang-binding</artifactId>
58                 <version>${project.version}</version>
59             </dependency>
60         </dependencies>
61     </dependencyManagement>
62
63     <build>
64         <plugins>
65             <plugin>
66                 <groupId>org.apache.felix</groupId>
67                 <artifactId>maven-bundle-plugin</artifactId>
68             </plugin>
69             <plugin>
70                 <groupId>org.apache.maven.plugins</groupId>
71                 <artifactId>maven-javadoc-plugin</artifactId>
72                 <configuration>
73                     <stylesheet>maven</stylesheet>
74                 </configuration>
75                 <executions>
76                     <execution>
77                         <goals>
78                             <goal>aggregate</goal>
79                         </goals>
80                         <phase>site</phase>
81                     </execution>
82                 </executions>
83             </plugin>
84         </plugins>
85         <pluginManagement>
86             <plugins>
87                 <plugin>
88                     <groupId>org.apache.felix</groupId>
89                     <artifactId>maven-bundle-plugin</artifactId>
90                     <version>${maven.bundle.version}</version>
91                     <extensions>true</extensions>
92                 </plugin>
93                 <plugin>
94                     <groupId>org.eclipse.m2e</groupId>
95                     <artifactId>lifecycle-mapping</artifactId>
96                     <version>1.0.0</version>
97                     <configuration>
98                         <lifecycleMappingMetadata>
99                             <pluginExecutions>
100                                 <pluginExecution>
101                                     <pluginExecutionFilter>
102                                         <groupId>org.apache.felix</groupId>
103                                         <artifactId>maven-bundle-plugin</artifactId>
104                                         <versionRange>[1.0,)</versionRange>
105                                         <goals>
106                                             <goal>manifest</goal>
107                                         </goals>
108                                     </pluginExecutionFilter>
109                                     <action>
110                                         <execute></execute>
111                                     </action>
112                                 </pluginExecution>
113                             </pluginExecutions>
114                         </lifecycleMappingMetadata>
115                     </configuration>
116                 </plugin>
117             </plugins>
118         </pluginManagement>
119     </build>
120
121     <reporting>
122         <plugins>
123             <plugin>
124                 <groupId>org.codehaus.mojo</groupId>
125                 <artifactId>findbugs-maven-plugin</artifactId>
126                 <version>2.5.3</version>
127                 <configuration>
128                     <effort>Max</effort>
129                     <threshold>Low</threshold>
130                     <goal>site</goal>
131                 </configuration>
132             </plugin>
133             <plugin>
134                 <groupId>org.codehaus.mojo</groupId>
135                 <artifactId>jdepend-maven-plugin</artifactId>
136                 <version>2.0-beta-2</version>
137             </plugin>
138         </plugins>
139     </reporting>
140 </project>
141