Add copyright headers to pom.xml files
[yangtools.git] / yang / yang-maven-plugin-it / src / test / resources / AdditionalConfig / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
5
6  This program and the accompanying materials are made available under the
7  terms of the Eclipse Public License v1.0 which accompanies this distribution,
8  and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12     <modelVersion>4.0.0</modelVersion>
13
14     <groupId>org.opendaylight.yangtools</groupId>
15     <version>0.5-SNAPSHOT</version>
16     <artifactId>test</artifactId>
17
18     <dependencies>
19         <dependency>
20             <groupId>org.opendaylight.yangtools</groupId>
21             <artifactId>yang-maven-plugin-spi</artifactId>
22             <version>${it-project.version}</version>
23         </dependency>
24     </dependencies>
25
26     <build>
27         <plugins>
28             <plugin>
29                 <groupId>org.opendaylight.yangtools</groupId>
30                 <artifactId>yang-maven-plugin</artifactId>
31                 <version>${it-project.version}</version>
32                 <executions>
33                     <execution>
34                         <goals>
35                             <goal>generate-sources</goal>
36                         </goals>
37                         <configuration>
38                             <yangFilesRootDir>../files</yangFilesRootDir>
39                             <inspectDependencies>false</inspectDependencies>
40                             <codeGenerators>
41                                 <generator>
42                                     <codeGeneratorClass>
43                                         org.opendaylight.yangtools.yang2sources.spi.CodeGeneratorTestImpl
44                                     </codeGeneratorClass>
45                                     <additionalConfiguration>
46                                         <nm1>abcd=a.b.c.d</nm1>
47                                         <nm2>abcd2=a.b.c.d.2</nm2>
48                                     </additionalConfiguration>
49                                     <resourceBaseDir>/target/resourcesGenerated</resourceBaseDir>
50                                 </generator>
51                                 <generator>
52                                     <codeGeneratorClass>
53                                         org.opendaylight.yangtools.yang2sources.spi.CodeGeneratorTestImpl
54                                     </codeGeneratorClass>
55                                     <additionalConfiguration>
56                                         <c1>config</c1>
57                                     </additionalConfiguration>
58                                 </generator>
59                             </codeGenerators>
60                         </configuration>
61                     </execution>
62                 </executions>
63
64                 <dependencies>
65                     <dependency>
66                         <groupId>org.opendaylight.yangtools</groupId>
67                         <artifactId>yang-maven-plugin-spi</artifactId>
68                         <version>${it-project.version}</version>
69                         <type>test-jar</type>
70                     </dependency>
71                 </dependencies>
72             </plugin>
73         </plugins>
74     </build>
75 </project>