Add .tox/ to .gitignore
[odlparent.git] / karaf / karaf-maven-plugin / src / it / test-assembly-prop-edits / 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"
21          xmlns="http://maven.apache.org/POM/4.0.0"
22          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
23     <modelVersion>4.0.0</modelVersion>
24
25     <groupId>test</groupId>
26     <artifactId>test-assembl-prop-edits</artifactId>
27     <version>1.0-SNAPSHOT</version>
28     <packaging>karaf-assembly</packaging>
29
30     <properties>
31         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
32     </properties>
33     <dependencies>
34         <dependency>
35             <groupId>org.apache.karaf.features</groupId>
36             <artifactId>framework</artifactId>
37             <version>4.0.1</version>
38             <type>kar</type>
39         </dependency>
40         <dependency>
41             <groupId>org.apache.karaf.features</groupId>
42             <artifactId>standard</artifactId>
43             <version>4.0.1</version>
44             <classifier>features</classifier>
45             <type>xml</type>
46             <scope>runtime</scope>
47         </dependency>
48     </dependencies>
49     <build>
50         <plugins>
51             <plugin>
52                 <groupId>org.apache.karaf.tooling</groupId>
53                 <artifactId>karaf-maven-plugin</artifactId>
54                 <version>@pom.version@</version>
55                 <extensions>true</extensions>
56                 <configuration>
57                     <finalName>${project.artifactId}</finalName>
58                     <bootFeatures>
59                         <feature>bundle</feature>
60                         <feature>config</feature>
61                         <feature>diagnostic</feature>
62                         <feature>feature</feature>
63                         <feature>jaas</feature>
64                         <feature>shell</feature>
65                         <feature>log</feature>
66                         <feature>management</feature>
67                         <feature>package</feature>
68                         <feature>shell-compat</feature>
69                         <feature>ssh</feature>
70                         <feature>system</feature>
71                         <feature>wrap</feature>
72                     </bootFeatures>
73                     <archiveZip>false</archiveZip>
74                 </configuration>
75             </plugin>
76         </plugins>
77     </build>
78 </project>