Felix Meschberger | efb2d08 | 2008-08-19 13:18:47 +0000 | [diff] [blame] | 1 | <!-- |
| 2 | Licensed to the Apache Software Foundation (ASF) under one |
| 3 | or more contributor license agreements. See the NOTICE file |
| 4 | distributed with this work for additional information |
| 5 | regarding copyright ownership. The ASF licenses this file |
| 6 | to you under the Apache License, Version 2.0 (the |
| 7 | "License"); you may not use this file except in compliance |
| 8 | with the License. You may obtain a copy of the License at |
| 9 | |
| 10 | http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | |
| 12 | Unless required by applicable law or agreed to in writing, |
| 13 | software distributed under the License is distributed on an |
| 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 15 | KIND, either express or implied. See the License for the |
| 16 | specific language governing permissions and limitations |
| 17 | under the License. |
| 18 | --> |
| 19 | <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"> |
| 20 | <parent> |
| 21 | <groupId>org.apache.felix</groupId> |
| 22 | <artifactId>felix</artifactId> |
Clement Escoffier | 4ae8697 | 2009-04-09 12:09:09 +0000 | [diff] [blame] | 23 | <version>1.0.4</version> |
Felix Meschberger | efb2d08 | 2008-08-19 13:18:47 +0000 | [diff] [blame] | 24 | <relativePath>../pom/pom.xml</relativePath> |
| 25 | </parent> |
| 26 | <modelVersion>4.0.0</modelVersion> |
| 27 | <packaging>bundle</packaging> |
| 28 | <name>Apache Felix Remote Shell</name> |
| 29 | <description> |
| 30 | A simple remote textual user interface for Felix' shell service. |
| 31 | </description> |
Felix Meschberger | 0a46914 | 2009-02-02 08:54:12 +0000 | [diff] [blame] | 32 | <version>1.0.5-SNAPSHOT</version> |
Felix Meschberger | efb2d08 | 2008-08-19 13:18:47 +0000 | [diff] [blame] | 33 | <artifactId>org.apache.felix.shell.remote</artifactId> |
| 34 | <dependencies> |
| 35 | <dependency> |
| 36 | <groupId>${pom.groupId}</groupId> |
| 37 | <artifactId>org.osgi.core</artifactId> |
| 38 | <version>1.0.0</version> |
| 39 | </dependency> |
| 40 | <dependency> |
| 41 | <groupId>${pom.groupId}</groupId> |
| 42 | <artifactId>org.osgi.compendium</artifactId> |
| 43 | <version>1.0.1</version> |
| 44 | </dependency> |
| 45 | <dependency> |
| 46 | <groupId>${pom.groupId}</groupId> |
| 47 | <artifactId>org.apache.felix.shell</artifactId> |
| 48 | <version>1.0.0</version> |
| 49 | </dependency> |
| 50 | </dependencies> |
| 51 | <build> |
| 52 | <plugins> |
| 53 | <plugin> |
| 54 | <groupId>org.apache.felix</groupId> |
| 55 | <artifactId>maven-bundle-plugin</artifactId> |
| 56 | <version>1.4.0</version> |
| 57 | <extensions>true</extensions> |
| 58 | <configuration> |
| 59 | <instructions> |
Felix Meschberger | efb2d08 | 2008-08-19 13:18:47 +0000 | [diff] [blame] | 60 | <Bundle-Category>console</Bundle-Category> |
| 61 | <Bundle-Activator> |
| 62 | org.apache.felix.shell.remote.Activator |
| 63 | </Bundle-Activator> |
Felix Meschberger | f543f37 | 2008-09-10 19:33:25 +0000 | [diff] [blame] | 64 | <Private-Package> |
| 65 | org.apache.felix.shell.remote.* |
| 66 | </Private-Package> |
| 67 | <Import-Package> |
| 68 | org.osgi.service.log;resolution:=optional,* |
| 69 | </Import-Package> |
Felix Meschberger | efb2d08 | 2008-08-19 13:18:47 +0000 | [diff] [blame] | 70 | </instructions> |
| 71 | </configuration> |
| 72 | </plugin> |
| 73 | </plugins> |
| 74 | </build> |
Felix Meschberger | efb2d08 | 2008-08-19 13:18:47 +0000 | [diff] [blame] | 75 | </project> |