Bump versions by x.y.(z+1)
[odlparent.git] / karaf4-plugin / src / it / simple-it / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright © 2016 Red Hat, Inc. and others.  All rights reserved.
4
5  This program and the accompanying materials are made available under the
6  terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  and is available at http://www.eclipse.org/legal/epl-v10.html
8  -->
9 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11   <modelVersion>4.0.0</modelVersion>
12
13   <groupId>org.opendaylight.odlparent.it</groupId>
14   <artifactId>simple-it</artifactId>
15   <version>1.2.3-SNAPSHOT</version>
16
17   <description>A simple IT verifying the basic use case.</description>
18
19   <properties>
20     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
21   </properties>
22
23   <build>
24     <plugins>
25       <plugin>
26         <groupId>@project.groupId@</groupId>
27         <artifactId>@project.artifactId@</artifactId>
28         <version>@project.version@</version>
29         <executions>
30           <execution>
31             <id>touch</id>
32             <phase>validate</phase>
33             <goals>
34               <goal>touch</goal>
35             </goals>
36             <configuration>
37                 <featureRepos>
38                     <param>foo</param>
39                 </featureRepos>
40             </configuration>
41           </execution>
42         </executions>
43       </plugin>
44     </plugins>
45   </build>
46 </project>