88829dff0c03e8ece2b0be3f9d72d3943bab2924
[controller.git] / opendaylight / sal / yang-prototype / code-generator / maven-yang-plugin-it / src / test / resources / UnknownGenerator / 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     <artifactId>test</artifactId>
10
11     <build>
12         <plugins>
13             <plugin>
14                 <groupId>org.opendaylight.controller</groupId>
15                 <artifactId>maven-yang-plugin</artifactId>
16                 <version>1.0</version>
17                 <executions>
18                     <execution>
19                         <goals>
20                             <goal>generate-sources</goal>
21                         </goals>
22                         <configuration>
23                             <yangFilesRootDir>${basedir}/../Correct</yangFilesRootDir>
24                             <codeGenerators>
25                                 <generator>
26                                     <codeGeneratorClass>
27                                         org.opendaylight.controller.yang2sources.spi.CodeGeneratorTestImpl
28                                     </codeGeneratorClass>
29                                     <outputBaseDir>
30                                         /outDir/
31                                     </outputBaseDir>
32                                 </generator>
33                                 <generator>
34                                     <codeGeneratorClass>
35                                         unknown
36                                     </codeGeneratorClass>
37                                     <outputBaseDir>
38                                         /outDir/
39                                     </outputBaseDir>
40                                 </generator>
41                             </codeGenerators>
42                         </configuration>
43                     </execution>
44                 </executions>
45
46                 <dependencies>
47                     <dependency>
48                         <groupId>org.opendaylight.controller</groupId>
49                         <artifactId>maven-yang</artifactId>
50                         <version>1.0</version>
51                         <type>test-jar</type>
52                     </dependency>
53                 </dependencies>
54             </plugin>
55         </plugins>
56     </build>
57 </project>