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