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