Release yangtools
[yangtools.git] / plugin / 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.odlparent</groupId>
14         <artifactId>odlparent</artifactId>
15         <version>9.0.15</version>
16         <relativePath/>
17     </parent>
18
19     <modelVersion>4.0.0</modelVersion>
20     <groupId>org.opendaylight.yangtools</groupId>
21     <artifactId>yang-maven-plugin-it</artifactId>
22     <version>7.0.17</version>
23
24     <dependencies>
25         <dependency>
26             <groupId>org.apache.maven.shared</groupId>
27             <artifactId>maven-verifier</artifactId>
28             <version>1.7.2</version>
29             <scope>test</scope>
30         </dependency>
31         <dependency>
32             <groupId>com.google.guava</groupId>
33             <artifactId>guava</artifactId>
34             <scope>test</scope>
35         </dependency>
36     </dependencies>
37
38     <build>
39       <testResources>
40         <testResource>
41           <directory>${basedir}/src/test/resources</directory>
42           <filtering>true</filtering>
43         </testResource>
44       </testResources>
45         <plugins>
46           <plugin>
47             <artifactId>maven-resources-plugin</artifactId>
48             <executions>
49               <execution>
50                 <id>default-testResources</id>
51                 <phase>process-test-resources</phase>
52                 <goals>
53                   <goal>testResources</goal>
54                 </goals>
55                 <configuration>
56                   <useDefaultDelimiters>false</useDefaultDelimiters>
57                   <delimiters>
58                     <delimiter>@</delimiter>
59                   </delimiters>
60                 </configuration>
61               </execution>
62             </executions>
63           </plugin>
64             <plugin>
65                 <artifactId>maven-failsafe-plugin</artifactId>
66                 <executions>
67                     <execution>
68                         <goals>
69                             <goal>integration-test</goal>
70                             <goal>verify</goal>
71                         </goals>
72                     </execution>
73                 </executions>
74             </plugin>
75             <plugin>
76                 <groupId>org.codehaus.mojo</groupId>
77                 <artifactId>properties-maven-plugin</artifactId>
78                 <executions>
79                     <execution>
80                         <phase>generate-resources</phase>
81                         <goals>
82                             <goal>write-project-properties</goal>
83                         </goals>
84                         <configuration>
85                             <outputFile>${project.build.directory}/it-project.properties</outputFile>
86                         </configuration>
87                     </execution>
88                 </executions>
89             </plugin>
90             <plugin>
91                 <artifactId>maven-help-plugin</artifactId>
92                 <configuration>
93                     <output>${project.build.directory}/effective-settings.xml</output>
94                 </configuration>
95                 <executions>
96                     <execution>
97                       <phase>pre-integration-test</phase>
98                       <goals>
99                           <goal>effective-settings</goal>
100                       </goals>
101                     </execution>
102                 </executions>
103             </plugin>
104         </plugins>
105     </build>
106
107 </project>