Refactored ModuleBuilder to avoid name conflicts. Fixed implementation of ChoiceBuilder.
[controller.git] / opendaylight / sal / yang-prototype / code-generator / maven-yang-plugin-it / src / test / resources / Correct_resources / 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>../files</yangFilesRootDir>
23                             <resourceProviders>
24                                 <provider>
25                                     <resourceProviderClass>
26                                         org.opendaylight.controller.yang2sources.spi.ResourceProviderTestImpl
27                                     </resourceProviderClass>
28                                     <outputBaseDir>
29                                         outDir/
30                                     </outputBaseDir>
31                                 </provider>
32                             </resourceProviders>
33                         </configuration>
34                     </execution>
35                 </executions>
36
37                 <dependencies>
38                     <dependency>
39                         <groupId>org.opendaylight.controller</groupId>
40                         <artifactId>yang-maven-plugin-spi</artifactId>
41                         <version>0.5.1-SNAPSHOT</version>
42                         <type>test-jar</type>
43                     </dependency>
44                 </dependencies>
45             </plugin>
46         </plugins>
47     </build>
48 </project>