Added javadoc to maven-yang-plugin.
[controller.git] / opendaylight / sal / yang-prototype / code-generator / maven-yang-plugin / 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         <artifactId>binding-generator</artifactId>
6         <groupId>org.opendaylight.controller</groupId>
7         <version>1.0</version>
8     </parent>
9
10     <artifactId>maven-yang-plugin</artifactId>
11     <packaging>maven-plugin</packaging>
12     <description>
13         This plugin is a wrapper for "yang to source code" generation.
14         It can be configured by a set of third-party code generators and resource providers.
15         For further info see available goals.
16         Sample usage:
17
18         TODO: add sample usage when finished
19     </description>
20
21     <dependencies>
22         <dependency>
23             <groupId>org.apache.maven</groupId>
24             <artifactId>maven-plugin-api</artifactId>
25             <version>3.0.5</version>
26         </dependency>
27         <dependency>
28             <groupId>org.apache.maven.plugin-tools</groupId>
29             <artifactId>maven-plugin-annotations</artifactId>
30             <version>3.2</version>
31             <scope>provided</scope>
32         </dependency>
33
34         <dependency>
35             <groupId>${project.groupId}</groupId>
36             <artifactId>yang-model-parser-impl</artifactId>
37             <version>1.0</version>
38         </dependency>
39         <dependency>
40             <groupId>org.opendaylight.controller</groupId>
41             <artifactId>maven-yang</artifactId>
42             <version>1.0</version>
43         </dependency>
44
45         <dependency>
46             <groupId>commons-io</groupId>
47             <artifactId>commons-io</artifactId>
48             <version>2.4</version>
49         </dependency>
50
51         <dependency>
52             <groupId>${project.groupId}</groupId>
53             <artifactId>maven-yang</artifactId>
54             <version>1.0</version>
55             <type>test-jar</type>
56             <scope>test</scope>
57         </dependency>
58         <dependency>
59             <groupId>org.mockito</groupId>
60             <artifactId>mockito-all</artifactId>
61             <version>1.8.4</version>
62             <scope>test</scope>
63         </dependency>
64     </dependencies>
65
66     <reporting>
67         <plugins>
68             <plugin>
69                 <groupId>org.apache.maven.plugins</groupId>
70                 <artifactId>maven-plugin-plugin</artifactId>
71                 <version>3.2</version>
72             </plugin>
73         </plugins>
74     </reporting>
75
76     <build>
77         <plugins>
78             <plugin>
79                 <groupId>org.apache.maven.plugins</groupId>
80                 <artifactId>maven-plugin-plugin</artifactId>
81                 <version>3.2</version>
82                 <configuration>
83                     <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
84                 </configuration>
85                 <executions>
86                     <execution>
87                         <id>mojo-descriptor</id>
88                         <goals>
89                             <goal>descriptor</goal>
90                         </goals>
91                     </execution>
92                 </executions>
93             </plugin>
94         </plugins>
95     </build>
96
97 </project>