Use plugin-generator-api in yang-maven-plugin
[yangtools.git] / plugin / yang-maven-plugin-it / src / test / resources / test-parent / 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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
8     <modelVersion>4.0.0</modelVersion>
9
10     <groupId>org.opendaylight.yangtools</groupId>
11     <artifactId>test-parent</artifactId>
12     <version>@project.version@</version>
13     <packaging>pom</packaging>
14
15     <modules>
16         <module>additional-config</module>
17         <module>correct</module>
18         <module>file-generator</module>
19         <module>generate-test1</module>
20         <module>generate-test2</module>
21         <module>generator</module>
22         <module>invalid-version</module>
23         <module>missing-yang-in-dep</module>
24         <module>naming-conflict</module>
25         <module>no-generators</module>
26         <module>no-output-dir</module>
27         <module>no-yang-files</module>
28         <module>unknown-generator</module>
29         <module>yang-root-not-exist</module>
30     </modules>
31
32     <build>
33         <pluginManagement>
34             <plugins>
35                 <plugin>
36                     <groupId>org.codehaus.mojo</groupId>
37                     <artifactId>properties-maven-plugin</artifactId>
38                     <version>1.0.0</version>
39                     <executions>
40                         <execution>
41                             <phase>generate-resources</phase>
42                             <goals>
43                                 <goal>write-project-properties</goal>
44                             </goals>
45                             <configuration>
46                                 <outputFile>it-project.properties</outputFile>
47                             </configuration>
48                         </execution>
49                     </executions>
50                 </plugin>
51             </plugins>
52         </pluginManagement>
53     </build>
54
55 </project>