4bf399f0c32d255e631e5efcab1b6004098e701c
[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</groupId>
29             <artifactId>maven-project</artifactId>
30             <version>2.2.1</version>
31         </dependency>
32         <dependency>
33             <groupId>org.apache.maven.plugin-tools</groupId>
34             <artifactId>maven-plugin-annotations</artifactId>
35             <version>3.2</version>
36             <scope>provided</scope>
37         </dependency>
38
39         <dependency>
40             <groupId>${project.groupId}</groupId>
41             <artifactId>yang-model-parser-impl</artifactId>
42             <version>1.0</version>
43         </dependency>
44         <dependency>
45             <groupId>org.opendaylight.controller</groupId>
46             <artifactId>maven-yang</artifactId>
47             <version>1.0</version>
48         </dependency>
49
50         <dependency>
51             <groupId>commons-io</groupId>
52             <artifactId>commons-io</artifactId>
53             <version>2.4</version>
54         </dependency>
55
56         <dependency>
57             <groupId>${project.groupId}</groupId>
58             <artifactId>maven-yang</artifactId>
59             <version>1.0</version>
60             <type>test-jar</type>
61             <scope>test</scope>
62         </dependency>
63         <dependency>
64             <groupId>org.mockito</groupId>
65             <artifactId>mockito-all</artifactId>
66             <version>1.8.4</version>
67             <scope>test</scope>
68         </dependency>
69     </dependencies>
70
71     <reporting>
72         <plugins>
73             <plugin>
74                 <groupId>org.apache.maven.plugins</groupId>
75                 <artifactId>maven-plugin-plugin</artifactId>
76                 <version>3.2</version>
77             </plugin>
78         </plugins>
79     </reporting>
80
81     <build>
82         <plugins>
83             <plugin>
84                 <groupId>org.apache.maven.plugins</groupId>
85                 <artifactId>maven-plugin-plugin</artifactId>
86                 <version>3.2</version>
87                 <configuration>
88                     <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
89                 </configuration>
90                 <executions>
91                     <execution>
92                         <id>mojo-descriptor</id>
93                         <goals>
94                             <goal>descriptor</goal>
95                         </goals>
96                     </execution>
97                 </executions>
98             </plugin>
99         </plugins>
100     </build>
101
102 </project>