Fix minor bug in FRM proactive flow code path
[controller.git] / opendaylight / sal / yang-prototype / yang / maven-yang-plugin-it / src / test / resources / GenerateTest1 / 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     <artifactId>generator-test1</artifactId>
7     <version>0.5.4-SNAPSHOT</version>
8
9     <build>
10         <plugins>
11             <plugin>
12                 <groupId>org.opendaylight.controller</groupId>
13                 <artifactId>yang-maven-plugin</artifactId>
14                 <version>0.5.4-SNAPSHOT</version>
15                 <executions>
16                     <execution>
17                         <goals>
18                             <goal>generate-sources</goal>
19                         </goals>
20                         <configuration>
21                             <yangFilesRootDir>${basedir}/src/main/resources</yangFilesRootDir>
22                             <inspectDependencies>false</inspectDependencies>
23                             <codeGenerators>
24                                 <generator>
25                                     <codeGeneratorClass>
26                                         org.opendaylight.controller.yang2sources.spi.CodeGeneratorTestImpl
27                                     </codeGeneratorClass>
28                                 </generator>
29                             </codeGenerators>
30                         </configuration>
31                     </execution>
32                 </executions>
33
34                 <dependencies>
35                     <dependency>
36                         <groupId>org.opendaylight.controller</groupId>
37                         <artifactId>yang-maven-plugin-spi</artifactId>
38                         <version>0.5.4-SNAPSHOT</version>
39                         <type>test-jar</type>
40                     </dependency>
41                 </dependencies>
42             </plugin>
43         </plugins>
44     </build>
45 </project>