Bump versions by x.y.(z+1)
[odlparent.git] / karaf-plugin / src / it / simple-it / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4   <modelVersion>4.0.0</modelVersion>
5
6   <groupId>org.opendaylight.odlparent.it</groupId>
7   <artifactId>simple-it</artifactId>
8   <version>1.2.3-SNAPSHOT</version>
9
10   <description>A simple IT verifying the basic use case.</description>
11
12   <properties>
13     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
14   </properties>
15
16   <build>
17     <plugins>
18       <plugin>
19         <groupId>@project.groupId@</groupId>
20         <artifactId>@project.artifactId@</artifactId>
21         <version>@project.version@</version>
22         <executions>
23           <execution>
24             <id>touch</id>
25             <phase>validate</phase>
26             <goals>
27               <goal>touch</goal>
28             </goals>
29             <configuration>
30                 <featureRepos>
31                     <param>foo</param>
32                 </featureRepos>
33             </configuration>
34           </execution>
35         </executions>
36       </plugin>
37     </plugins>
38   </build>
39 </project>