Introduce moduleQName for sharing
[yangtools.git] / yang / yang-maven-plugin-it / src / test / resources / NamingConflict / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!-- Copyright (c) 2013 Cisco Systems, Inc. and others. All rights reserved. This 
4     program and the accompanying materials are made available under the terms of the 
5     Eclipse Public License v1.0 which accompanies this distribution, and is available 
6     at http://www.eclipse.org/legal/epl-v10.html -->
7 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
8     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
9     <modelVersion>4.0.0</modelVersion>
10
11     <groupId>org.opendaylight.yangtools</groupId>
12     <version>0.5-SNAPSHOT</version>
13     <artifactId>test</artifactId>
14
15     <build>
16         <plugins>
17             <plugin>
18                 <groupId>org.opendaylight.yangtools</groupId>
19                 <artifactId>yang-maven-plugin</artifactId>
20                 <version>${it-project.version}</version>
21                 <executions>
22                     <execution>
23                         <goals>
24                             <goal>generate-sources</goal>
25                         </goals>
26                         <configuration>
27                             <inspectDependencies>false</inspectDependencies>
28                             <codeGenerators>
29                                 <generator>
30                                     <codeGeneratorClass>
31                                         org.opendaylight.yangtools.maven.sal.api.gen.plugin.CodeGeneratorImpl
32                                     </codeGeneratorClass>
33                                     <outputBaseDir>
34                                         target/generated-sources
35                                     </outputBaseDir>
36                                 </generator>
37                             </codeGenerators>
38                         </configuration>
39                     </execution>
40                 </executions>
41                 <dependencies>
42                     <dependency>
43                         <groupId>org.opendaylight.yangtools</groupId>
44                         <artifactId>maven-sal-api-gen-plugin</artifactId>
45                         <version>${it-project.version}</version>
46                         <type>jar</type>
47                     </dependency>
48                 </dependencies>
49             </plugin>
50         </plugins>
51     </build>
52 </project>