Added support for resolving augmentations.
[controller.git] / opendaylight / sal / yang-prototype / yang / 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         <modelVersion>4.0.0</modelVersion>
4         <parent>
5                 <groupId>org.opendaylight.controller</groupId>
6                 <artifactId>yang-prototype</artifactId>
7                 <version>0.5-SNAPSHOT</version>
8         </parent>
9
10         <artifactId>yang</artifactId>
11         <packaging>pom</packaging>
12         <modules>
13                 <module>yang-common</module>
14                 <module>yang-data-api</module>
15                 <module>yang-data-util</module>
16                 <module>yang-model-api</module>
17                 <module>yang-model-util</module>
18                 <module>yang-binding</module>
19                 <module>../code-generator/yang-model-parser-api</module>
20                 <module>../code-generator/yang-model-parser-impl</module>
21                 <module>../code-generator/maven-yang</module>
22                 <module>../code-generator/maven-yang-plugin</module>
23                 <module>../code-generator/maven-yang-plugin-it</module>
24
25         </modules>
26         <build>
27                 <plugins>
28                         <plugin>
29                                 <groupId>org.apache.maven.plugins</groupId>
30                                 <artifactId>maven-compiler-plugin</artifactId>
31                                 <version>2.0</version>
32                                 <inherited>true</inherited>
33                                 <configuration>
34                                         <source>1.7</source>
35                                         <target>1.7</target>
36                                 </configuration>
37                         </plugin>
38                         <plugin>
39                                 <groupId>org.apache.maven.plugins</groupId>
40                                 <artifactId>maven-javadoc-plugin</artifactId>
41                                 <version>2.8.1</version>
42                                 <configuration>
43                                         <stylesheet>maven</stylesheet>
44                                 </configuration>
45                                 <executions>
46                                         <execution>
47                                                 <goals>
48                                                         <goal>aggregate</goal>
49                                                 </goals>
50                                                 <phase>site</phase>
51                                         </execution>
52                                 </executions>
53                         </plugin>
54                 </plugins>
55         </build>
56         <reporting>
57                 <plugins>
58                         <plugin>
59                                 <groupId>org.codehaus.mojo</groupId>
60                                 <artifactId>findbugs-maven-plugin</artifactId>
61                                 <version>2.4.0</version>
62                                 <configuration>
63                                         <effort>Max</effort>
64                                         <threshold>Low</threshold>
65                                         <goal>site</goal>
66                                 </configuration>
67                         </plugin>
68                         <plugin>
69                                 <groupId>org.codehaus.mojo</groupId>
70                                 <artifactId>jdepend-maven-plugin</artifactId>
71                                 <version>2.0-beta-2</version>
72                         </plugin>
73                 </plugins>
74         </reporting>
75 </project>