Updated POM files and versions to SNAPSHOT
[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         <groupId>org.opendaylight.controller</groupId>
11         <artifactId>yang</artifactId>
12         <version>0.5-SNAPSHOT</version>
13         <packaging>pom</packaging>
14         <modules>
15                 <module>yang-common</module>
16                 <module>yang-data-api</module>
17                 <module>yang-data-util</module>
18                 <module>yang-model-api</module>
19                 <module>yang-model-util</module>
20                 <module>yang-binding</module>
21                 <module>../code-generator/yang-model-parser-api</module>
22                 <module>../code-generator/yang-model-parser-impl</module>
23                 <module>../code-generator/maven-yang</module>
24                 <module>../code-generator/maven-yang-plugin</module>
25                 <module>../code-generator/maven-yang-plugin-it</module>
26
27         </modules>
28         <dependencies>
29
30                 <dependency>
31                         <groupId>junit</groupId>
32                         <artifactId>junit</artifactId>
33                         <scope>test</scope>
34                         <optional>true</optional>
35                 </dependency>
36                 <dependency>
37                         <groupId>org.slf4j</groupId>
38                         <artifactId>slf4j-api</artifactId>
39                 </dependency>
40                 <dependency>
41                         <groupId>org.slf4j</groupId>
42                         <artifactId>slf4j-simple</artifactId>
43                 </dependency>
44         </dependencies>
45         <build>
46                 <plugins>
47                         <plugin>
48                                 <groupId>org.apache.maven.plugins</groupId>
49                                 <artifactId>maven-compiler-plugin</artifactId>
50                                 <version>2.0</version>
51                                 <inherited>true</inherited>
52                                 <configuration>
53                                         <source>1.7</source>
54                                         <target>1.7</target>
55                                 </configuration>
56                         </plugin>
57                         <plugin>
58                                 <groupId>org.apache.maven.plugins</groupId>
59                                 <artifactId>maven-javadoc-plugin</artifactId>
60                                 <version>2.8.1</version>
61                                 <configuration>
62                                         <stylesheet>maven</stylesheet>
63                                 </configuration>
64                                 <executions>
65                                         <execution>
66                                                 <goals>
67                                                         <goal>aggregate</goal>
68                                                 </goals>
69                                                 <phase>site</phase>
70                                         </execution>
71                                 </executions>
72                         </plugin>
73                 </plugins>
74         </build>
75         <reporting>
76                 <plugins>
77                         <plugin>
78                                 <groupId>org.codehaus.mojo</groupId>
79                                 <artifactId>findbugs-maven-plugin</artifactId>
80                                 <version>2.4.0</version>
81                                 <configuration>
82                                         <effort>Max</effort>
83                                         <threshold>Low</threshold>
84                                         <goal>site</goal>
85                                 </configuration>
86                         </plugin>
87                         <plugin>
88                                 <groupId>org.codehaus.mojo</groupId>
89                                 <artifactId>jdepend-maven-plugin</artifactId>
90                                 <version>2.0-beta-2</version>
91                         </plugin>
92                 </plugins>
93         </reporting>
94 </project>