a2d3a2206e6b99ed7193c80f2078e598032e0e73
[controller.git] / opendaylight / sal / yang-prototype / code-generator / yang-to-sources-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>yang-to-sources-plugin</artifactId>
11     <packaging>maven-plugin</packaging>
12
13     <dependencies>
14         <dependency>
15             <groupId>org.apache.maven</groupId>
16             <artifactId>maven-plugin-api</artifactId>
17             <version>3.0.5</version>
18         </dependency>
19         <dependency>
20             <groupId>org.apache.maven.plugin-tools</groupId>
21             <artifactId>maven-plugin-annotations</artifactId>
22             <version>3.2</version>
23             <scope>provided</scope>
24         </dependency>
25
26         <dependency>
27             <groupId>${project.groupId}</groupId>
28             <artifactId>yang-model-parser-impl</artifactId>
29             <version>1.0</version>
30         </dependency>
31         <dependency>
32             <groupId>org.opendaylight.controller</groupId>
33             <artifactId>yang-to-sources</artifactId>
34             <version>1.0</version>
35         </dependency>
36
37         <dependency>
38             <groupId>commons-io</groupId>
39             <artifactId>commons-io</artifactId>
40             <version>2.4</version>
41         </dependency>
42
43         <dependency>
44             <groupId>${project.groupId}</groupId>
45             <artifactId>yang-to-sources</artifactId>
46             <version>1.0</version>
47             <type>test-jar</type>
48             <scope>test</scope>
49         </dependency>
50         <dependency>
51             <groupId>org.mockito</groupId>
52             <artifactId>mockito-all</artifactId>
53             <version>1.8.4</version>
54             <scope>test</scope>
55         </dependency>
56     </dependencies>
57
58     <build>
59         <plugins>
60             <plugin>
61                 <groupId>org.apache.maven.plugins</groupId>
62                 <artifactId>maven-plugin-plugin</artifactId>
63                 <version>3.2</version>
64                 <configuration>
65                     <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
66                 </configuration>
67                 <executions>
68                     <execution>
69                         <id>mojo-descriptor</id>
70                         <goals>
71                             <goal>descriptor</goal>
72                         </goals>
73                     </execution>
74                 </executions>
75             </plugin>
76         </plugins>
77     </build>
78
79 </project>