Add .tox/ to .gitignore
[odlparent.git] / karaf / karaf-maven-plugin / src / it / test-basic-generation / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ Licensed to the Apache Software Foundation (ASF) under one
4   ~ or more contributor license agreements.  See the NOTICE file
5   ~ distributed with this work for additional information
6   ~ regarding copyright ownership.  The ASF licenses this file
7   ~ to you under the Apache License, Version 2.0 (the
8   ~ "License"); you may not use this file except in compliance
9   ~ with the License.  You may obtain a copy of the License at
10   ~
11   ~   http://www.apache.org/licenses/LICENSE-2.0
12   ~
13   ~ Unless required by applicable law or agreed to in writing,
14   ~ software distributed under the License is distributed on an
15   ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16   ~ KIND, either express or implied.  See the License for the
17   ~ specific language governing permissions and limitations
18   ~ under the License.
19   -->
20 <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
21          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
22     <modelVersion>4.0.0</modelVersion>
23
24     <groupId>test</groupId>
25     <artifactId>test-basic-generation</artifactId>
26     <version>1.0-SNAPSHOT</version>
27     <packaging>bundle</packaging>
28
29     <properties>
30         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
31     </properties>
32
33     <build>
34         <plugins>
35             <plugin>
36                 <groupId>org.apache.felix</groupId>
37                 <artifactId>maven-bundle-plugin</artifactId>
38                 <version>2.3.7</version>
39                 <extensions>true</extensions>
40             </plugin>
41             <plugin>
42                 <groupId>org.apache.karaf.tooling</groupId>
43                 <artifactId>karaf-maven-plugin</artifactId>
44                 <version>@pom.version@</version>
45                 <executions>
46                     <execution>
47                         <id>generate-features-file</id>
48                         <phase>package</phase>
49                         <goals>
50                             <goal>features-generate-descriptor</goal>
51                         </goals>
52                         <configuration>
53                         </configuration>
54                     </execution>
55                 </executions>
56             </plugin>
57         </plugins>
58     </build>
59 </project>