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