Gert Vanthienen | cdec0a2 | 2009-06-16 07:05:38 +0000 | [diff] [blame] | 1 | <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 Nodet | 1432d50 | 2009-11-27 12:32:26 +0000 | [diff] [blame] | 24 | <version>1.3.0-SNAPSHOT</version> |
Gert Vanthienen | cdec0a2 | 2009-06-16 07:05:38 +0000 | [diff] [blame] | 25 | </parent> |
| 26 | |
| 27 | <groupId>org.apache.felix.karaf.tooling</groupId> |
| 28 | <artifactId>features-maven-plugin</artifactId> |
| 29 | <packaging>maven-plugin</packaging> |
Guillaume Nodet | 1432d50 | 2009-11-27 12:32:26 +0000 | [diff] [blame] | 30 | <version>1.3.0-SNAPSHOT</version> |
Gert Vanthienen | cdec0a2 | 2009-06-16 07:05:38 +0000 | [diff] [blame] | 31 | <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 Nodet | e73545e | 2009-09-18 20:25:06 +0000 | [diff] [blame] | 37 | <properties> |
| 38 | <appendedResourcesDirectory>${basedir}/../../etc/appended-resources</appendedResourcesDirectory> |
| 39 | </properties> |
| 40 | |
Gert Vanthienen | cdec0a2 | 2009-06-16 07:05:38 +0000 | [diff] [blame] | 41 | <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 Vanthienen | ceb3373 | 2009-10-16 20:08:00 +0000 | [diff] [blame] | 55 | <groupId>org.apache.felix.karaf.features</groupId> |
| 56 | <artifactId>org.apache.felix.karaf.features.core</artifactId> |
| 57 | </dependency> |
| 58 | <dependency> |
Gert Vanthienen | abed2af | 2009-06-16 11:58:10 +0000 | [diff] [blame] | 59 | <groupId>org.easymock</groupId> |
| 60 | <artifactId>easymock</artifactId> |
Gert Vanthienen | cdec0a2 | 2009-06-16 07:05:38 +0000 | [diff] [blame] | 61 | <scope>test</scope> |
| 62 | </dependency> |
| 63 | </dependencies> |
| 64 | |
| 65 | </project> |