Merge "When a node is going down, remove edges in both directions associated with...
[controller.git] / opendaylight / sal / yang-prototype / yang / 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.4-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.4-SNAPSHOT</version>
16                 <executions>
17                     <execution>
18                         <goals>
19                             <goal>generate-sources</goal>
20                         </goals>
21                         <configuration>
22                             <yangFilesRootDir>unknown</yangFilesRootDir>
23                             <inspectDependencies>false</inspectDependencies>
24                             <codeGenerators>
25                                 <generator>
26                                     <codeGeneratorClass>
27                                         org.opendaylight.controller.yang2sources.spi.CodeGeneratorTestImpl
28                                     </codeGeneratorClass>
29                                     <outputBaseDir>
30                                         /outDir/
31                                     </outputBaseDir>
32                                 </generator>
33                             </codeGenerators>
34                         </configuration>
35                     </execution>
36                 </executions>
37             </plugin>
38         </plugins>
39     </build>
40 </project>