b2131f791b3741c25d96fa33ef9edbf7c153c85e
[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     </modules>
21
22     <properties>
23         <yang.version>0.5.3-SNAPSHOT</yang.version>
24     </properties>
25
26     <dependencyManagement>
27         <dependencies>
28             <dependency>
29                 <groupId>com.google.guava</groupId>
30                 <artifactId>guava</artifactId>
31                 <version>14.0.1</version>
32                 <type>jar</type>
33             </dependency>
34             <dependency>
35                 <groupId>org.slf4j</groupId>
36                 <artifactId>slf4j-api</artifactId>
37                 <version>1.7.2</version>
38             </dependency>
39             <dependency>
40                 <groupId>junit</groupId>
41                 <artifactId>junit</artifactId>
42                 <version>4.10</version>
43             </dependency>
44             <dependency>
45                 <groupId>org.opendaylight.controller</groupId>
46                 <artifactId>yang-binding</artifactId>
47                 <version>${yang.version}</version>
48             </dependency>
49             <dependency>
50                 <groupId>org.opendaylight.controller</groupId>
51                 <artifactId>yang-common</artifactId>
52                 <version>${yang.version}</version>
53             </dependency>
54             <dependency>
55                 <groupId>org.opendaylight.controller</groupId>
56                 <artifactId>yang-data-api</artifactId>
57                 <version>${yang.version}</version>
58             </dependency>
59             <dependency>
60                 <groupId>org.opendaylight.controller</groupId>
61                 <artifactId>yang-model-api</artifactId>
62                 <version>${yang.version}</version>
63             </dependency>
64             <dependency>
65                 <groupId>org.opendaylight.controller</groupId>
66                 <artifactId>yang-data-util</artifactId>
67                 <version>${yang.version}</version>
68             </dependency>
69         </dependencies>
70
71     </dependencyManagement>
72
73     <dependencies>
74         <dependency>
75             <groupId>junit</groupId>
76             <artifactId>junit</artifactId>
77             <scope>test</scope>
78             <optional>true</optional>
79         </dependency>
80         <dependency>
81             <groupId>org.mockito</groupId>
82             <artifactId>mockito-all</artifactId>
83             <version>1.9.5</version>
84             <scope>test</scope>
85         </dependency>
86     </dependencies>
87     <build>
88         <plugins>
89             <plugin>
90                 <groupId>org.apache.maven.plugins</groupId>
91                 <artifactId>maven-compiler-plugin</artifactId>
92                 <version>2.0</version>
93                 <inherited>true</inherited>
94                 <configuration>
95                     <source>1.7</source>
96                     <target>1.7</target>
97                 </configuration>
98             </plugin>
99             <plugin>
100                 <groupId>org.apache.maven.plugins</groupId>
101                 <artifactId>maven-javadoc-plugin</artifactId>
102                 <version>2.8.1</version>
103                 <configuration>
104                     <stylesheet>maven</stylesheet>
105                 </configuration>
106                 <executions>
107                     <execution>
108                         <goals>
109                             <goal>aggregate</goal>
110                         </goals>
111                         <phase>site</phase>
112                     </execution>
113                 </executions>
114             </plugin>
115         </plugins>
116     </build>
117     <reporting>
118         <plugins>
119             <plugin>
120                 <groupId>org.codehaus.mojo</groupId>
121                 <artifactId>findbugs-maven-plugin</artifactId>
122                 <version>2.4.0</version>
123                 <configuration>
124                     <effort>Max</effort>
125                     <threshold>Low</threshold>
126                     <goal>site</goal>
127                 </configuration>
128             </plugin>
129             <plugin>
130                 <groupId>org.codehaus.mojo</groupId>
131                 <artifactId>jdepend-maven-plugin</artifactId>
132                 <version>2.0-beta-2</version>
133             </plugin>
134         </plugins>
135     </reporting>
136 </project>