Merge "Deprecate yang-model-util InstanceIdentifier"
[yangtools.git] / yang / yang-maven-plugin-it / 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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11
12     <parent>
13         <groupId>org.opendaylight.yangtools</groupId>
14         <artifactId>yang</artifactId>
15         <version>0.6.2-SNAPSHOT</version>
16     </parent>
17
18     <modelVersion>4.0.0</modelVersion>
19     <artifactId>yang-maven-plugin-it</artifactId>
20
21     <dependencies>
22         <dependency>
23             <groupId>org.apache.maven.shared</groupId>
24             <artifactId>maven-verifier</artifactId>
25             <version>1.5</version>
26             <scope>test</scope>
27         </dependency>
28     </dependencies>
29
30     <properties>
31         <it-project.version>${project.version}</it-project.version>
32     </properties>
33
34     <build>
35         <plugins>
36             <plugin>
37                 <artifactId>maven-failsafe-plugin</artifactId>
38                 <version>2.16</version>
39                 <executions>
40                     <execution>
41                         <goals>
42                             <goal>integration-test</goal>
43                             <goal>verify</goal>
44                         </goals>
45                     </execution>
46                 </executions>
47             </plugin>
48             <plugin>
49                 <groupId>org.codehaus.mojo</groupId>
50                 <artifactId>properties-maven-plugin</artifactId>
51                 <version>1.0-alpha-2</version>
52                 <executions>
53                     <execution>
54                         <phase>generate-resources</phase>
55                         <goals>
56                             <goal>write-project-properties</goal>
57                         </goals>
58                         <configuration>
59                             <outputFile>${project.build.directory}/it-project.properties</outputFile>
60                         </configuration>
61                     </execution>
62                 </executions>
63             </plugin>
64         </plugins>
65     </build>
66
67 </project>