Carsten Ziegeler | b61fe0e | 2008-01-03 09:24:12 +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 | --> |
Carsten Ziegeler | 4fec096 | 2008-01-11 16:13:31 +0000 | [diff] [blame] | 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"> |
Humberto Cervantes Maceda | bd7de44 | 2006-04-04 16:05:02 +0000 | [diff] [blame] | 20 | <parent> |
| 21 | <groupId>org.apache.felix</groupId> |
Richard S. Hall | 66b4e4a | 2011-08-11 20:53:08 +0000 | [diff] [blame] | 22 | <artifactId>felix-parent</artifactId> |
| 23 | <version>1.2.0</version> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 24 | <relativePath>../pom/pom.xml</relativePath> |
Humberto Cervantes Maceda | bd7de44 | 2006-04-04 16:05:02 +0000 | [diff] [blame] | 25 | </parent> |
| 26 | <modelVersion>4.0.0</modelVersion> |
Richard S. Hall | 0ad669d | 2007-06-18 19:05:48 +0000 | [diff] [blame] | 27 | <packaging>bundle</packaging> |
| 28 | <name>Apache Felix Wire Admin</name> |
Humberto Cervantes Maceda | bd7de44 | 2006-04-04 16:05:02 +0000 | [diff] [blame] | 29 | <artifactId>org.apache.felix.wireadmin</artifactId> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 30 | <version>0.9.0-SNAPSHOT</version> |
Humberto Cervantes Maceda | bd7de44 | 2006-04-04 16:05:02 +0000 | [diff] [blame] | 31 | <dependencies> |
| 32 | <dependency> |
Richard S. Hall | 66b4e4a | 2011-08-11 20:53:08 +0000 | [diff] [blame] | 33 | <groupId>org.osgi</groupId> |
Humberto Cervantes Maceda | bd7de44 | 2006-04-04 16:05:02 +0000 | [diff] [blame] | 34 | <artifactId>org.osgi.core</artifactId> |
Richard S. Hall | 66b4e4a | 2011-08-11 20:53:08 +0000 | [diff] [blame] | 35 | <version>4.0.0</version> |
Humberto Cervantes Maceda | bd7de44 | 2006-04-04 16:05:02 +0000 | [diff] [blame] | 36 | <scope>provided</scope> |
| 37 | </dependency> |
| 38 | <dependency> |
Richard S. Hall | 66b4e4a | 2011-08-11 20:53:08 +0000 | [diff] [blame] | 39 | <groupId>org.osgi</groupId> |
Humberto Cervantes Maceda | bd7de44 | 2006-04-04 16:05:02 +0000 | [diff] [blame] | 40 | <artifactId>org.osgi.compendium</artifactId> |
Richard S. Hall | 66b4e4a | 2011-08-11 20:53:08 +0000 | [diff] [blame] | 41 | <version>4.0.0</version> |
Humberto Cervantes Maceda | bd7de44 | 2006-04-04 16:05:02 +0000 | [diff] [blame] | 42 | <scope>provided</scope> |
| 43 | </dependency> |
| 44 | </dependencies> |
| 45 | <build> |
| 46 | <plugins> |
| 47 | <plugin> |
Richard S. Hall | 0ad669d | 2007-06-18 19:05:48 +0000 | [diff] [blame] | 48 | <groupId>org.apache.felix</groupId> |
| 49 | <artifactId>maven-bundle-plugin</artifactId> |
Richard S. Hall | 66b4e4a | 2011-08-11 20:53:08 +0000 | [diff] [blame] | 50 | <version>2.3.5</version> |
Humberto Cervantes Maceda | bd7de44 | 2006-04-04 16:05:02 +0000 | [diff] [blame] | 51 | <extensions>true</extensions> |
| 52 | <configuration> |
Richard S. Hall | 0ad669d | 2007-06-18 19:05:48 +0000 | [diff] [blame] | 53 | <instructions> |
| 54 | <Bundle-Name>WireAdmin</Bundle-Name> |
Carsten Ziegeler | cf6e51b | 2008-04-17 06:33:59 +0000 | [diff] [blame] | 55 | <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor> |
Richard S. Hall | 0ad669d | 2007-06-18 19:05:48 +0000 | [diff] [blame] | 56 | <Bundle-Description> |
Humberto Cervantes Maceda | bd7de44 | 2006-04-04 16:05:02 +0000 | [diff] [blame] | 57 | Implementation of the WireAdmin Service. |
Richard S. Hall | 0ad669d | 2007-06-18 19:05:48 +0000 | [diff] [blame] | 58 | </Bundle-Description> |
| 59 | <Bundle-Activator> |
Humberto Cervantes Maceda | bd7de44 | 2006-04-04 16:05:02 +0000 | [diff] [blame] | 60 | org.apache.felix.wireadmin.Activator |
Richard S. Hall | 0ad669d | 2007-06-18 19:05:48 +0000 | [diff] [blame] | 61 | </Bundle-Activator> |
| 62 | <Bundle-SymbolicName>org.apache.felix.wireadmin</Bundle-SymbolicName> |
| 63 | <Private-Package>org.apache.felix.wireadmin.*</Private-Package> |
Richard S. Hall | 66b4e4a | 2011-08-11 20:53:08 +0000 | [diff] [blame] | 64 | <Export-Package>org.osgi.service.wireadmin</Export-Package> |
Richard S. Hall | 0ad669d | 2007-06-18 19:05:48 +0000 | [diff] [blame] | 65 | </instructions> |
Humberto Cervantes Maceda | bd7de44 | 2006-04-04 16:05:02 +0000 | [diff] [blame] | 66 | </configuration> |
| 67 | </plugin> |
| 68 | </plugins> |
| 69 | </build> |
| 70 | </project> |