Guillaume Nodet | 10fcd11 | 2010-06-21 08:38:18 +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> |
| 24 | <version>1.7.0-SNAPSHOT</version> |
| 25 | </parent> |
| 26 | |
| 27 | <groupId>org.apache.felix.karaf.tooling</groupId> |
| 28 | <artifactId>cmdhelp-maven-plugin</artifactId> |
| 29 | <packaging>maven-plugin</packaging> |
| 30 | <version>1.7.0-SNAPSHOT</version> |
| 31 | <name>Apache Felix Karaf :: Maven2 Command Help plugin</name> |
| 32 | |
| 33 | <description> |
| 34 | A Maven 2 plugin for extracting Karaf command helps into markup |
| 35 | </description> |
| 36 | |
| 37 | <properties> |
| 38 | <appendedResourcesDirectory>${basedir}/../../etc/appended-resources</appendedResourcesDirectory> |
| 39 | </properties> |
| 40 | |
| 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> |
| 55 | <groupId>org.apache.felix.karaf.shell</groupId> |
| 56 | <artifactId>org.apache.felix.karaf.shell.console</artifactId> |
| 57 | </dependency> |
| 58 | <dependency> |
| 59 | <groupId>org.slf4j</groupId> |
| 60 | <artifactId>slf4j-simple</artifactId> |
| 61 | </dependency> |
| 62 | <dependency> |
| 63 | <groupId>org.apache.xbean</groupId> |
| 64 | <artifactId>xbean-finder-shaded</artifactId> |
| 65 | </dependency> |
| 66 | </dependencies> |
| 67 | |
| 68 | </project> |