Merge "Package names for enclosed Types of TOs were changed to fully qualified. Fully...
[controller.git] / opendaylight / sal / yang-prototype / yang / maven-yang-plugin-it / src / test / resources / Correct / 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     <artifactId>test</artifactId>
8
9     <dependencies>
10         <dependency>
11             <groupId>org.opendaylight.controller</groupId>
12             <artifactId>yang-maven-plugin-spi</artifactId>
13             <version>0.5.4-SNAPSHOT</version>
14         </dependency>
15     </dependencies>
16
17     <build>
18         <plugins>
19             <plugin>
20                 <groupId>org.opendaylight.controller</groupId>
21                 <artifactId>yang-maven-plugin</artifactId>
22                 <version>0.5.4-SNAPSHOT</version>
23                 <executions>
24                     <execution>
25                         <goals>
26                             <goal>generate-sources</goal>
27                         </goals>
28                         <configuration>
29                             <yangFilesRootDir>../files</yangFilesRootDir>
30                             <inspectDependencies>false</inspectDependencies>
31                             <codeGenerators>
32                                 <generator>
33                                     <codeGeneratorClass>
34                                         org.opendaylight.controller.yang2sources.spi.CodeGeneratorTestImpl
35                                     </codeGeneratorClass>
36                                 </generator>
37                             </codeGenerators>
38                         </configuration>
39                     </execution>
40                 </executions>
41
42                 <dependencies>
43                     <dependency>
44                         <groupId>org.opendaylight.controller</groupId>
45                         <artifactId>yang-maven-plugin-spi</artifactId>
46                         <version>0.5.4-SNAPSHOT</version>
47                         <type>test-jar</type>
48                     </dependency>
49                 </dependencies>
50             </plugin>
51         </plugins>
52     </build>
53 </project>