Added generate To File for specified directory.
[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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2   <modelVersion>4.0.0</modelVersion>
3     <groupId>org.opendaylight.controller</groupId>
4     <artifactId>yang</artifactId>
5     <version>1.0</version>
6     <packaging>pom</packaging>
7     <modules>
8         <module>yang-common</module>
9         <module>yang-data-api</module>
10         <module>yang-data-util</module>
11         <module>yang-model-api</module>
12         <module>yang-model-util</module>
13         <module>yang-binding</module>
14     </modules>
15     <dependencies>
16
17         <dependency>
18             <groupId>junit</groupId>
19             <artifactId>junit</artifactId>
20             <version>4.10</version>
21             <scope>test</scope>
22             <optional>true</optional>
23         </dependency>
24         <dependency>
25             <groupId>org.slf4j</groupId>
26             <artifactId>slf4j-api</artifactId>
27             <version>1.7.2</version>
28         </dependency>
29         <dependency>
30             <groupId>org.slf4j</groupId>
31             <artifactId>slf4j-simple</artifactId>
32             <version>1.7.2</version>
33         </dependency>
34     </dependencies>
35     <build>
36         <plugins>
37             <plugin>
38                 <groupId>org.apache.maven.plugins</groupId>
39                 <artifactId>maven-compiler-plugin</artifactId>
40                 <version>2.0</version>
41                 <inherited>true</inherited>
42                 <configuration>
43                     <source>1.7</source>
44                     <target>1.7</target>
45                 </configuration>
46             </plugin>
47             <plugin>
48                 <groupId>org.apache.maven.plugins</groupId>
49                 <artifactId>maven-javadoc-plugin</artifactId>
50                 <version>2.8.1</version>
51                 <configuration>
52                     <stylesheet>maven</stylesheet>
53                 </configuration>
54                 <executions>
55                     <execution>
56                         <goals>
57                             <goal>aggregate</goal>
58                         </goals>
59                         <phase>site</phase>
60                     </execution>
61                 </executions>
62             </plugin>
63         </plugins>
64     </build>
65     <reporting>
66         <plugins>
67             <plugin>
68                 <groupId>org.codehaus.mojo</groupId>
69                 <artifactId>findbugs-maven-plugin</artifactId>
70                 <version>2.4.0</version>
71                 <configuration>
72                     <effort>Max</effort>
73                     <threshold>Low</threshold>
74                     <goal>site</goal>
75                 </configuration>
76             </plugin>
77             <plugin>
78                 <groupId>org.codehaus.mojo</groupId>
79                 <artifactId>jdepend-maven-plugin</artifactId>
80                 <version>2.0-beta-2</version>
81             </plugin>
82         </plugins>
83     </reporting>
84 </project>