BUG-1170: removed hardcoding of test build directory.
[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"
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     <artifactId>test-parent</artifactId>
13     <version>1.0</version>
14     <packaging>pom</packaging>
15
16     <properties>
17         <it-project.version>0.6.2-SNAPSHOT</it-project.version>
18     </properties>
19
20     <modules>
21         <module>additional-config</module>
22         <module>correct</module>
23         <module>generate-test1</module>
24         <module>generate-test2</module>
25         <module>generator</module>
26         <module>invalid-version</module>
27         <module>missing-yang-in-dep</module>
28         <module>naming-conflict</module>
29         <module>no-generators</module>
30         <module>no-output-dir</module>
31         <module>no-yang-files</module>
32         <module>unknown-generator</module>
33         <module>yang-root-not-exist</module>
34     </modules>
35
36     <build>
37         <pluginManagement>
38             <plugins>
39                 <plugin>
40                     <groupId>org.codehaus.mojo</groupId>
41                     <artifactId>properties-maven-plugin</artifactId>
42                     <version>1.0-alpha-2</version>
43                     <executions>
44                         <execution>
45                             <phase>generate-resources</phase>
46                             <goals>
47                                 <goal>write-project-properties</goal>
48                             </goals>
49                             <configuration>
50                                 <outputFile>it-project.properties</outputFile>
51                             </configuration>
52                         </execution>
53                     </executions>
54                 </plugin>
55             </plugins>
56         </pluginManagement>
57     </build>
58
59 </project>