Merge branch 'master' of ../controller
[yangtools.git] / yang / 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>generate-test1</module>
19         <module>generate-test2</module>
20         <module>generator</module>
21         <module>invalid-version</module>
22         <module>missing-yang-in-dep</module>
23         <module>naming-conflict</module>
24         <module>no-generators</module>
25         <module>no-output-dir</module>
26         <module>no-yang-files</module>
27         <module>unknown-generator</module>
28         <module>yang-root-not-exist</module>
29     </modules>
30
31     <build>
32         <pluginManagement>
33             <plugins>
34                 <plugin>
35                     <groupId>org.codehaus.mojo</groupId>
36                     <artifactId>properties-maven-plugin</artifactId>
37                     <version>1.0.0</version>
38                     <executions>
39                         <execution>
40                             <phase>generate-resources</phase>
41                             <goals>
42                                 <goal>write-project-properties</goal>
43                             </goals>
44                             <configuration>
45                                 <outputFile>it-project.properties</outputFile>
46                             </configuration>
47                         </execution>
48                     </executions>
49                 </plugin>
50             </plugins>
51         </pluginManagement>
52     </build>
53
54 </project>