Added getDerivedIdentities() method to IdentitySchemaNode. Updated test.
[yangtools.git] / restconf / 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
4     <parent>
5         <groupId>org.opendaylight.yangtools</groupId>
6         <artifactId>yangtools</artifactId>
7         <version>0.5-SNAPSHOT</version>
8     </parent>
9
10     <modelVersion>4.0.0</modelVersion>
11     <artifactId>restconf-parent</artifactId>
12     <packaging>pom</packaging>
13
14     <modules>
15         <module>restconf-common</module>
16         <module>restconf-jaxrs-api</module>
17         <module>restconf-util</module>
18     </modules>
19
20     <dependencyManagement>
21         <dependencies>
22             <dependency>
23                 <groupId>org.opendaylight.yangtools</groupId>
24                 <artifactId>yang-common</artifactId>
25                 <version>${project.version}</version>
26             </dependency>
27             <dependency>
28                 <groupId>org.opendaylight.yangtools</groupId>
29                 <artifactId>yang-data-api</artifactId>
30                 <version>${project.version}</version>
31             </dependency>
32             <dependency>
33                 <groupId>org.opendaylight.yangtools</groupId>
34                 <artifactId>yang-data-util</artifactId>
35                 <version>${project.version}</version>
36             </dependency>
37             <dependency>
38                 <groupId>org.opendaylight.yangtools</groupId>
39                 <artifactId>yang-model-api</artifactId>
40                 <version>${project.version}</version>
41             </dependency>
42             <dependency>
43                 <groupId>org.opendaylight.yangtools</groupId>
44                 <artifactId>yang-model-util</artifactId>
45                 <version>${project.version}</version>
46             </dependency>
47             <dependency>
48                 <groupId>org.opendaylight.yangtools</groupId>
49                 <artifactId>yang-binding</artifactId>
50                 <version>${project.version}</version>
51             </dependency>
52             <dependency>
53                 <groupId>org.opendaylight.yangtools</groupId>
54                 <artifactId>yang-parser-api</artifactId>
55                 <version>${project.version}</version>
56             </dependency>
57             <dependency>
58                 <groupId>org.opendaylight.yangtools</groupId>
59                 <artifactId>yang-parser-impl
60                 </artifactId>
61                 <version>${project.version}</version>
62             </dependency>
63             <dependency>
64                 <groupId>org.opendaylight.yangtools</groupId>
65                 <artifactId>yang-maven-plugin</artifactId>
66                 <version>${project.version}</version>
67             </dependency>
68             <dependency>
69                 <groupId>org.opendaylight.yangtools</groupId>
70                 <artifactId>yang-maven-plugin-spi</artifactId>
71                 <version>${project.version}</version>
72             </dependency>
73         </dependencies>
74     </dependencyManagement>
75
76     <build>
77         <plugins>
78             <plugin>
79                 <groupId>org.apache.maven.plugins</groupId>
80                 <artifactId>maven-compiler-plugin</artifactId>
81                 <version>2.0</version>
82                 <inherited>true</inherited>
83                 <configuration>
84                     <source>1.7</source>
85                     <target>1.7</target>
86                 </configuration>
87             </plugin>
88             <plugin>
89                 <groupId>org.apache.maven.plugins</groupId>
90                 <artifactId>maven-javadoc-plugin</artifactId>
91                 <version>2.9.1</version>
92                 <configuration>
93                     <stylesheet>maven</stylesheet>
94                 </configuration>
95                 <executions>
96                     <execution>
97                         <goals>
98                             <goal>aggregate</goal>
99                         </goals>
100                         <phase>site</phase>
101                     </execution>
102                 </executions>
103             </plugin>
104         </plugins>
105         <pluginManagement>
106             <plugins>
107                 <plugin>
108                     <groupId>org.apache.felix</groupId>
109                     <artifactId>maven-bundle-plugin</artifactId>
110                     <version>${maven.bundle.version}</version>
111                     <extensions>true</extensions>
112                     <executions>
113                         <execution>
114                             <id>bundle-manifest</id>
115                             <phase>process-classes</phase>
116                             <goals>
117                                 <goal>manifest</goal>
118                             </goals>
119                         </execution>
120                     </executions>
121                 </plugin>
122                 <plugin>
123                     <groupId>org.eclipse.m2e</groupId>
124                     <artifactId>lifecycle-mapping</artifactId>
125                     <version>1.0.0</version>
126                     <configuration>
127                         <lifecycleMappingMetadata>
128                             <pluginExecutions>
129                                 <pluginExecution>
130                                     <pluginExecutionFilter>
131                                         <groupId>org.apache.felix</groupId>
132                                         <artifactId>maven-bundle-plugin</artifactId>
133                                         <versionRange>[1.0,)</versionRange>
134                                         <goals>
135                                             <goal>manifest</goal>
136                                         </goals>
137                                     </pluginExecutionFilter>
138                                     <action>
139                                         <execute></execute>
140                                     </action>
141                                 </pluginExecution>
142                             </pluginExecutions>
143                         </lifecycleMappingMetadata>
144                     </configuration>
145                 </plugin>
146             </plugins>
147         </pluginManagement>
148     </build>
149
150     <reporting>
151         <plugins>
152             <plugin>
153                 <groupId>org.codehaus.mojo</groupId>
154                 <artifactId>findbugs-maven-plugin</artifactId>
155                 <version>2.4.0</version>
156                 <configuration>
157                     <effort>Max</effort>
158                     <threshold>Low</threshold>
159                     <goal>site</goal>
160                 </configuration>
161             </plugin>
162             <plugin>
163                 <groupId>org.codehaus.mojo</groupId>
164                 <artifactId>jdepend-maven-plugin</artifactId>
165                 <version>2.0-beta-2</version>
166             </plugin>
167         </plugins>
168     </reporting>
169
170     <version>0.1.0-SNAPSHOT</version>
171 </project>
172