Bump versions to 7.0.8-SNAPSHOT
[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.5</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.8-SNAPSHOT</version>
23
24     <dependencies>
25         <dependency>
26             <groupId>org.apache.maven.shared</groupId>
27             <artifactId>maven-verifier</artifactId>
28             <version>1.6</version>
29             <scope>test</scope>
30             <exclusions>
31                 <exclusion>
32                     <groupId>com.google.code.findbugs</groupId>
33                     <!-- Use com.google.code.findbugs:annotations instead of jsr305 -->
34                     <artifactId>jsr305</artifactId>
35                 </exclusion>
36             </exclusions>
37         </dependency>
38         <dependency>
39             <groupId>com.google.guava</groupId>
40             <artifactId>guava</artifactId>
41             <scope>test</scope>
42         </dependency>
43     </dependencies>
44
45     <build>
46       <testResources>
47         <testResource>
48           <directory>${basedir}/src/test/resources</directory>
49           <filtering>true</filtering>
50         </testResource>
51       </testResources>
52         <plugins>
53           <plugin>
54             <artifactId>maven-resources-plugin</artifactId>
55             <executions>
56               <execution>
57                 <id>default-testResources</id>
58                 <phase>process-test-resources</phase>
59                 <goals>
60                   <goal>testResources</goal>
61                 </goals>
62                 <configuration>
63                   <useDefaultDelimiters>false</useDefaultDelimiters>
64                   <delimiters>
65                     <delimiter>@</delimiter>
66                   </delimiters>
67                 </configuration>
68               </execution>
69             </executions>
70           </plugin>
71             <plugin>
72                 <artifactId>maven-failsafe-plugin</artifactId>
73                 <executions>
74                     <execution>
75                         <goals>
76                             <goal>integration-test</goal>
77                             <goal>verify</goal>
78                         </goals>
79                     </execution>
80                 </executions>
81             </plugin>
82             <plugin>
83                 <groupId>org.codehaus.mojo</groupId>
84                 <artifactId>properties-maven-plugin</artifactId>
85                 <executions>
86                     <execution>
87                         <phase>generate-resources</phase>
88                         <goals>
89                             <goal>write-project-properties</goal>
90                         </goals>
91                         <configuration>
92                             <outputFile>${project.build.directory}/it-project.properties</outputFile>
93                         </configuration>
94                     </execution>
95                 </executions>
96             </plugin>
97             <plugin>
98                 <artifactId>maven-help-plugin</artifactId>
99                 <configuration>
100                     <output>${project.build.directory}/effective-settings.xml</output>
101                 </configuration>
102                 <executions>
103                     <execution>
104                       <phase>pre-integration-test</phase>
105                       <goals>
106                           <goal>effective-settings</goal>
107                       </goals>
108                     </execution>
109                 </executions>
110             </plugin>
111         </plugins>
112     </build>
113
114 </project>