blob: edeecd72e5e04253e7e22423fcc73a0e748acf14 [file] [log] [blame]
Gert Vanthienencdec0a22009-06-16 07:05:38 +00001<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/maven-v4_0_0.xsd">
2 <!--
3
4 Licensed to the Apache Software Foundation (ASF) under one or more
5 contributor license agreements. See the NOTICE file distributed with
6 this work for additional information regarding copyright ownership.
7 The ASF licenses this file to You under the Apache License, Version 2.0
8 (the "License"); you may not use this file except in compliance with
9 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, software
14 distributed under the License is distributed on an "AS IS" BASIS,
15 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 See the License for the specific language governing permissions and
17 limitations under the License.
18 -->
19 <modelVersion>4.0.0</modelVersion>
20
21 <parent>
22 <groupId>org.apache.felix.karaf.tooling</groupId>
23 <artifactId>tooling</artifactId>
Guillaume Nodetdddb4e52010-06-15 09:09:47 +000024 <version>1.6.2</version>
Gert Vanthienencdec0a22009-06-16 07:05:38 +000025 </parent>
26
27 <groupId>org.apache.felix.karaf.tooling</groupId>
28 <artifactId>features-maven-plugin</artifactId>
29 <packaging>maven-plugin</packaging>
Guillaume Nodetdddb4e52010-06-15 09:09:47 +000030 <version>1.6.2</version>
Gert Vanthienencdec0a22009-06-16 07:05:38 +000031 <name>Apache Felix Karaf :: Maven2 Features plugin</name>
32
33 <description>
34 A Maven 2 plugin for working with feature descriptors
35 </description>
36
Guillaume Nodete73545e2009-09-18 20:25:06 +000037 <properties>
38 <appendedResourcesDirectory>${basedir}/../../etc/appended-resources</appendedResourcesDirectory>
39 </properties>
40
Gert Vanthienencdec0a22009-06-16 07:05:38 +000041 <dependencies>
42 <dependency>
43 <groupId>org.apache.maven</groupId>
44 <artifactId>maven-plugin-api</artifactId>
45 </dependency>
46 <dependency>
47 <groupId>org.apache.maven</groupId>
48 <artifactId>maven-project</artifactId>
49 </dependency>
50 <dependency>
51 <groupId>org.apache.felix</groupId>
52 <artifactId>maven-bundle-plugin</artifactId>
53 </dependency>
54 <dependency>
Gert Vanthienenceb33732009-10-16 20:08:00 +000055 <groupId>org.apache.felix.karaf.features</groupId>
56 <artifactId>org.apache.felix.karaf.features.core</artifactId>
57 </dependency>
58 <dependency>
Gert Vanthienenabed2af2009-06-16 11:58:10 +000059 <groupId>org.easymock</groupId>
60 <artifactId>easymock</artifactId>
Gert Vanthienencdec0a22009-06-16 07:05:38 +000061 <scope>test</scope>
62 </dependency>
63 </dependencies>
64
65</project>