Added generate To File for specified directory.
[controller.git] / opendaylight / sal / yang-prototype / sal / 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         <groupId>org.opendaylight.controller</groupId>
5         <artifactId>sal</artifactId>
6         <version>1.0-SNAPSHOT</version>
7         <packaging>pom</packaging>
8
9         <modules>
10                 <module>sal-common</module>
11                 <module>sal-common-util</module>
12                 <module>sal-core-api</module>
13                 <module>sal-data-api</module>
14                 <module>sal-binding-api</module>
15                 <module>sal-binding-spi</module>
16                 <module>sal-binding-broker-impl</module>
17                 <module>sal-schema-repository-api</module>
18                 <module>sal-core-spi</module>
19                 <module>sal-broker-impl</module>
20                 <module>sal-core-demo</module>
21         </modules>
22
23         <dependencyManagement>
24                 <dependencies>
25                         <dependency>
26                                 <groupId>com.google.guava</groupId>
27                                 <artifactId>guava</artifactId>
28                                 <version>14.0.1</version>
29                                 <type>jar</type>
30                         </dependency>
31                         <dependency>
32                                 <groupId>org.slf4j</groupId>
33                                 <artifactId>slf4j-api</artifactId>
34                                 <version>1.7.2</version>
35                         </dependency>
36                         <dependency>
37                                 <groupId>junit</groupId>
38                                 <artifactId>junit</artifactId>
39                                 <version>4.10</version>
40                         </dependency>
41                 </dependencies>
42         </dependencyManagement>
43
44         <dependencies>
45                 <dependency>
46                         <groupId>junit</groupId>
47                         <artifactId>junit</artifactId>
48                         <scope>test</scope>
49                         <optional>true</optional>
50                 </dependency>
51                 <dependency>
52                         <groupId>org.mockito</groupId>
53                         <artifactId>mockito-all</artifactId>
54                         <version>1.9.5</version>
55                         <scope>test</scope>
56                 </dependency>
57         </dependencies>
58         <build>
59                 <plugins>
60                         <plugin>
61                                 <groupId>org.apache.maven.plugins</groupId>
62                                 <artifactId>maven-compiler-plugin</artifactId>
63                                 <version>2.0</version>
64                                 <inherited>true</inherited>
65                                 <configuration>
66                                         <source>1.7</source>
67                                         <target>1.7</target>
68                                 </configuration>
69                         </plugin>
70                         <plugin>
71                                 <groupId>org.apache.maven.plugins</groupId>
72                                 <artifactId>maven-javadoc-plugin</artifactId>
73                                 <version>2.8.1</version>
74                                 <configuration>
75                                         <stylesheet>maven</stylesheet>
76                                 </configuration>
77                                 <executions>
78                                         <execution>
79                                                 <goals>
80                                                         <goal>aggregate</goal>
81                                                 </goals>
82                                                 <phase>site</phase>
83                                         </execution>
84                                 </executions>
85                         </plugin>
86                 </plugins>
87         </build>
88         <reporting>
89                 <plugins>
90                         <plugin>
91                                 <groupId>org.codehaus.mojo</groupId>
92                                 <artifactId>findbugs-maven-plugin</artifactId>
93                                 <version>2.4.0</version>
94                                 <configuration>
95                                         <effort>Max</effort>
96                                         <threshold>Low</threshold>
97                                         <goal>site</goal>
98                                 </configuration>
99                         </plugin>
100                         <plugin>
101                                 <groupId>org.codehaus.mojo</groupId>
102                                 <artifactId>jdepend-maven-plugin</artifactId>
103                                 <version>2.0-beta-2</version>
104                         </plugin>
105                 </plugins>
106         </reporting>
107 </project>