Bumped version of Maven YANG tools to 0.5.1-SNAPSHOT
[controller.git] / opendaylight / sal / yang-prototype / code-generator / maven-yang-plugin-it / src / test / resources / YangRootNotExist / 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
5         <groupId>org.opendaylight.controller</groupId>
6         <version>0.5.1-SNAPSHOT</version>
7
8     <artifactId>test</artifactId>
9
10     <build>
11         <plugins>
12             <plugin>
13                 <groupId>org.opendaylight.controller</groupId>
14                 <artifactId>yang-maven-plugin</artifactId>
15                 <version>0.5.1-SNAPSHOT</version>
16                 <executions>
17                     <execution>
18                         <goals>
19                             <goal>generate-sources</goal>
20                         </goals>
21                         <configuration>
22                             <yangFilesRootDir>unknown</yangFilesRootDir>
23                             <codeGenerators>
24                                 <generator>
25                                     <codeGeneratorClass>
26                                         org.opendaylight.controller.yang2sources.spi.CodeGeneratorTestImpl
27                                     </codeGeneratorClass>
28                                     <outputBaseDir>
29                                         /outDir/
30                                     </outputBaseDir>
31                                 </generator>
32                             </codeGenerators>
33                                                         <resourceProviders>
34                                 <provider>
35                                     <resourceProviderClass>
36                                         org.opendaylight.controller.yang2sources.spi.ResourceProviderTestImpl
37                                     </resourceProviderClass>
38                                     <outputBaseDir>
39                                         outDir/
40                                     </outputBaseDir>
41                                 </provider>
42                             </resourceProviders>
43                         </configuration>
44                     </execution>
45                 </executions>
46             </plugin>
47         </plugins>
48     </build>
49 </project>