Merge "BUG-579: improve code readability in RestconfUtils."
[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>yangtools-parent</artifactId>
15         <version>0.6.2-SNAPSHOT</version>
16         <relativePath>/../../common/parent/pom.xml</relativePath>
17     </parent>
18
19     <modelVersion>4.0.0</modelVersion>
20     <artifactId>yang-maven-plugin-it</artifactId>
21
22     <dependencies>
23         <dependency>
24             <groupId>org.apache.maven.shared</groupId>
25             <artifactId>maven-verifier</artifactId>
26             <scope>test</scope>
27         </dependency>
28         <dependency>
29             <groupId>${project.groupId}</groupId>
30             <artifactId>binding-java-api-generator</artifactId>
31             <version>${project.version}</version>
32             <scope>test</scope>
33         </dependency>
34         <dependency>
35             <groupId>${project.groupId}</groupId>
36             <artifactId>maven-sal-api-gen-plugin</artifactId>
37             <version>${project.version}</version>
38             <scope>test</scope>
39         </dependency>
40     </dependencies>
41
42     <properties>
43         <it-project.version>${project.version}</it-project.version>
44     </properties>
45
46     <build>
47         <plugins>
48             <plugin>
49                 <artifactId>maven-failsafe-plugin</artifactId>
50                 <version>2.16</version>
51                 <executions>
52                     <execution>
53                         <goals>
54                             <goal>integration-test</goal>
55                             <goal>verify</goal>
56                         </goals>
57                     </execution>
58                 </executions>
59             </plugin>
60             <plugin>
61                 <groupId>org.codehaus.mojo</groupId>
62                 <artifactId>properties-maven-plugin</artifactId>
63                 <version>1.0-alpha-2</version>
64                 <executions>
65                     <execution>
66                         <phase>generate-resources</phase>
67                         <goals>
68                             <goal>write-project-properties</goal>
69                         </goals>
70                         <configuration>
71                             <outputFile>${project.build.directory}/it-project.properties</outputFile>
72                         </configuration>
73                     </execution>
74                 </executions>
75             </plugin>
76         </plugins>
77     </build>
78
79 </project>