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