Karl Pauls | 4ebe508 | 2006-10-30 15:00:08 +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 | --> |
Alex Karasulu | 07d2049 | 2006-03-06 15:35:44 +0000 | [diff] [blame] | 19 | <project> |
| 20 | <parent> |
| 21 | <groupId>org.apache.felix</groupId> |
| 22 | <artifactId>felix</artifactId> |
Richard S. Hall | 8baa593 | 2006-12-06 15:53:52 +0000 | [diff] [blame] | 23 | <version>0.9.0-incubator-SNAPSHOT</version> |
Alex Karasulu | 07d2049 | 2006-03-06 15:35:44 +0000 | [diff] [blame] | 24 | </parent> |
| 25 | <modelVersion>4.0.0</modelVersion> |
Richard S. Hall | 1da4e54 | 2006-11-02 21:45:44 +0000 | [diff] [blame] | 26 | <packaging>bundle</packaging> |
Alex Karasulu | 07d2049 | 2006-03-06 15:35:44 +0000 | [diff] [blame] | 27 | <name>Apache Felix Shell Service</name> |
Richard S. Hall | 1da4e54 | 2006-11-02 21:45:44 +0000 | [diff] [blame] | 28 | <description>A simple OSGi command shell service.</description> |
Alex Karasulu | 07d2049 | 2006-03-06 15:35:44 +0000 | [diff] [blame] | 29 | <artifactId>org.apache.felix.shell</artifactId> |
| 30 | <dependencies> |
| 31 | <dependency> |
| 32 | <groupId>${pom.groupId}</groupId> |
Michael E. Rodriguez | 963719b | 2006-04-03 15:04:03 +0000 | [diff] [blame] | 33 | <artifactId>org.osgi.core</artifactId> |
Alex Karasulu | 07d2049 | 2006-03-06 15:35:44 +0000 | [diff] [blame] | 34 | <version>${pom.version}</version> |
| 35 | </dependency> |
| 36 | </dependencies> |
| 37 | <build> |
| 38 | <plugins> |
| 39 | <plugin> |
Richard S. Hall | 1da4e54 | 2006-11-02 21:45:44 +0000 | [diff] [blame] | 40 | <groupId>org.apache.felix</groupId> |
| 41 | <artifactId>maven-bundle-plugin</artifactId> |
Alex Karasulu | bfd9996 | 2006-03-07 02:35:38 +0000 | [diff] [blame] | 42 | <extensions>true</extensions> |
Alex Karasulu | 07d2049 | 2006-03-06 15:35:44 +0000 | [diff] [blame] | 43 | <configuration> |
Richard S. Hall | 1da4e54 | 2006-11-02 21:45:44 +0000 | [diff] [blame] | 44 | <instructions> |
| 45 | <Export-Package>org.apache.felix.shell; org.ungoverned.osgi.service.shell; version=1.0.0</Export-Package> |
| 46 | <Private-Package>org.apache.felix.*</Private-Package> |
Richard S. Hall | 1f1e2ef | 2006-12-15 21:30:13 +0000 | [diff] [blame] | 47 | <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> |
Richard S. Hall | 1da4e54 | 2006-11-02 21:45:44 +0000 | [diff] [blame] | 48 | <Bundle-Activator>org.apache.felix.shell.impl.Activator</Bundle-Activator> |
| 49 | <Export-Service>org.apache.felix.shell.ShellService, org.ungoverned.osgi.service.shell.ShellService</Export-Service> |
| 50 | <Import-Service>org.osgi.service.startlevel.StartLevel, org.osgi.service.packageadmin.PackageAdmin</Import-Service> |
| 51 | </instructions> |
Alex Karasulu | 07d2049 | 2006-03-06 15:35:44 +0000 | [diff] [blame] | 52 | </configuration> |
| 53 | </plugin> |
| 54 | </plugins> |
| 55 | </build> |
| 56 | </project> |