Refactored yang-maven-plugin.
[controller.git] / opendaylight / sal / yang-prototype / code-generator / 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
5         <parent>
6                 <groupId>org.opendaylight.controller</groupId>
7                 <artifactId>yang-prototype</artifactId>
8                 <version>0.5-SNAPSHOT</version>
9         </parent>
10
11         <groupId>org.opendaylight.controller</groupId>
12         <artifactId>binding-generator</artifactId>
13         <version>0.5-SNAPSHOT</version>
14         <packaging>pom</packaging>
15         <name>binding-generator</name>
16
17         <properties>
18                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
19         </properties>
20
21         <modules>
22                 <module>binding-model-api</module>
23                 <module>binding-generator-api</module>
24                 <module>binding-generator-spi</module>
25                 <module>binding-generator-util</module>
26                 <module>binding-generator-impl</module>
27                 <module>binding-java-api-generator</module>
28                 <module>maven-sal-api-gen-plugin</module>
29         </modules>
30         <dependencies>
31
32                 <dependency>
33                         <groupId>junit</groupId>
34                         <artifactId>junit</artifactId>
35                         <scope>test</scope>
36                         <optional>true</optional>
37                 </dependency>
38                 <dependency>
39                         <groupId>org.slf4j</groupId>
40                         <artifactId>slf4j-api</artifactId>
41                 </dependency>
42                 <dependency>
43                         <groupId>org.slf4j</groupId>
44                         <artifactId>slf4j-simple</artifactId>
45                 </dependency>
46         </dependencies>
47         <build>
48                 <plugins>
49                         <plugin>
50                                 <groupId>org.apache.maven.plugins</groupId>
51                                 <artifactId>maven-compiler-plugin</artifactId>
52                                 <version>2.0</version>
53                                 <inherited>true</inherited>
54                                 <configuration>
55                                         <source>1.7</source>
56                                         <target>1.7</target>
57                                 </configuration>
58                         </plugin>
59                         <plugin>
60                                 <groupId>org.apache.maven.plugins</groupId>
61                                 <artifactId>maven-javadoc-plugin</artifactId>
62                                 <version>2.8.1</version>
63                                 <configuration>
64                                         <stylesheet>maven</stylesheet>
65                                 </configuration>
66                                 <executions>
67                                         <execution>
68                                                 <goals>
69                                                         <goal>aggregate</goal>
70                                                 </goals>
71                                                 <phase>site</phase>
72                                         </execution>
73                                 </executions>
74                         </plugin>
75                 </plugins>
76         </build>
77 </project>