Merge "Add test verifying parser's ability to read module with two revisions at same...
[yangtools.git] / yang / yang-maven-plugin-it / pom.xml
1 <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">
2
3     <parent>
4         <groupId>org.opendaylight.yangtools</groupId>
5         <artifactId>yang</artifactId>
6         <version>0.6.0-SNAPSHOT</version>
7     </parent>
8
9     <modelVersion>4.0.0</modelVersion>
10     <artifactId>yang-maven-plugin-it</artifactId>
11
12     <dependencies>
13         <dependency>
14             <groupId>org.apache.maven.shared</groupId>
15             <artifactId>maven-verifier</artifactId>
16             <version>1.5</version>
17             <scope>test</scope>
18         </dependency>
19     </dependencies>
20
21     <properties>
22         <it-project.version>${project.version}</it-project.version>
23     </properties>
24
25     <build>
26         <plugins>
27             <plugin>
28                 <artifactId>maven-failsafe-plugin</artifactId>
29                 <version>2.16</version>
30                 <executions>
31                     <execution>
32                         <goals>
33                             <goal>integration-test</goal>
34                             <goal>verify</goal>
35                         </goals>
36                     </execution>
37                 </executions>
38             </plugin>
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>${project.build.directory}/it-project.properties</outputFile>
51                         </configuration>
52                     </execution>
53                 </executions>
54             </plugin>
55         </plugins>
56     </build>
57
58 </project>