Merge "Package names for enclosed Types of TOs were changed to fully qualified. Fully...
[controller.git] / opendaylight / sal / yang-prototype / yang / 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.4-SNAPSHOT</version>
8     </parent>
9
10     <artifactId>yang-maven-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-core</artifactId>
25             <version>3.0.5</version>
26         </dependency>
27         <dependency>
28             <groupId>org.apache.maven</groupId>
29             <artifactId>maven-plugin-api</artifactId>
30             <version>3.0.5</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                 <dependency>
39                         <groupId>org.apache.maven</groupId>
40                         <artifactId>maven-artifact</artifactId>
41                         <version>2.0</version>
42                 </dependency>
43
44         <dependency>
45             <groupId>${project.groupId}</groupId>
46             <artifactId>yang-model-parser-impl</artifactId>
47         </dependency>
48         <dependency>
49             <groupId>org.opendaylight.controller</groupId>
50             <artifactId>yang-maven-plugin-spi</artifactId>
51         </dependency>
52
53         <dependency>
54             <groupId>commons-io</groupId>
55             <artifactId>commons-io</artifactId>
56             <version>2.4</version>
57         </dependency>
58
59         <dependency>
60             <groupId>${project.groupId}</groupId>
61             <artifactId>yang-maven-plugin-spi</artifactId>
62             <version>${project.version}</version>
63             <type>test-jar</type>
64             <scope>test</scope>
65         </dependency>
66         <dependency>
67             <groupId>org.mockito</groupId>
68             <artifactId>mockito-all</artifactId>
69             <version>1.8.4</version>
70             <scope>test</scope>
71         </dependency>
72         <dependency>
73                 <groupId>junit</groupId>
74                 <artifactId>junit</artifactId>
75                 <scope>test</scope>
76         </dependency>
77     </dependencies>
78
79     <reporting>
80         <plugins>
81             <plugin>
82                 <groupId>org.apache.maven.plugins</groupId>
83                 <artifactId>maven-plugin-plugin</artifactId>
84                 <version>3.2</version>
85             </plugin>
86         </plugins>
87     </reporting>
88
89     <build>
90         <plugins>
91             <plugin>
92                 <groupId>org.apache.maven.plugins</groupId>
93                 <artifactId>maven-plugin-plugin</artifactId>
94                 <version>3.2</version>
95                 <configuration>
96                     <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
97                 </configuration>
98                 <executions>
99                     <execution>
100                         <id>mojo-descriptor</id>
101                         <goals>
102                             <goal>descriptor</goal>
103                         </goals>
104                     </execution>
105                 </executions>
106             </plugin>
107         </plugins>
108     </build>
109
110 </project>