Revert "Changed version from '0.5.7-SNAPSHOT' to '0.5.7'. Removed 'model' module...
[yangtools.git] / yang / yang-maven-plugin-it / src / test / resources / MissingYangInDep / 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.yangtools</groupId>
6     <version>0.5-SNAPSHOT</version>
7     <artifactId>generator-test2</artifactId>
8
9     <build>
10         <plugins>
11             <plugin>
12                 <groupId>org.opendaylight.yangtools</groupId>
13                 <artifactId>yang-maven-plugin</artifactId>
14                 <version>0.5.7-SNAPSHOT</version>
15                 <executions>
16                     <execution>
17                         <goals>
18                             <goal>generate-sources</goal>
19                         </goals>
20                         <configuration>
21                             <yangFilesRootDir>${project.basedir}/yang</yangFilesRootDir>
22                             <inspectDependencies>true</inspectDependencies>
23                             <codeGenerators>
24                                 <generator>
25                                     <codeGeneratorClass>
26                                         org.opendaylight.yangtools.yang2sources.spi.CodeGeneratorTestImpl
27                                     </codeGeneratorClass>
28                                     <outputBaseDir>
29                                         outDir/
30                                     </outputBaseDir>
31                                 </generator>
32                             </codeGenerators>
33                             <resourceProviders>
34                                 <provider>
35                                     <resourceProviderClass>
36                                         org.opendaylight.yangtools.yang2sources.spi.ResourceProviderTestImpl
37                                     </resourceProviderClass>
38                                     <outputBaseDir>
39                                         outDir/
40                                     </outputBaseDir>
41                                 </provider>
42                             </resourceProviders>
43                         </configuration>
44                     </execution>
45                 </executions>
46
47                 <dependencies>
48                     <dependency>
49                         <groupId>org.opendaylight.yangtools</groupId>
50                         <artifactId>yang-maven-plugin-spi</artifactId>
51                         <version>0.5.7-SNAPSHOT</version>
52                         <type>test-jar</type>
53                     </dependency>
54                 </dependencies>
55             </plugin>
56         </plugins>
57     </build>
58 </project>