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