238707122b0d4412c9a3e0de815cad6024cc3e51
[yangtools.git] / yang / yang-maven-plugin-it / src / test / resources / NoYangFiles / 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>test</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</version>
15                 <executions>
16                     <execution>
17                         <goals>
18                             <goal>generate-sources</goal>
19                         </goals>
20                         <configuration>
21                             <yangFilesRootDir>${basedir}</yangFilesRootDir>
22                             <inspectDependencies>false</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                         </configuration>
34                     </execution>
35                 </executions>
36
37                 <dependencies>
38                     <dependency>
39                         <groupId>org.opendaylight.yangtools</groupId>
40                         <artifactId>yang-maven-plugin-spi</artifactId>
41                         <version>0.5.7</version>
42                         <type>test-jar</type>
43                     </dependency>
44                 </dependencies>
45             </plugin>
46         </plugins>
47     </build>
48 </project>