blob: 1ece8da1a68d6b144b6bc5d284f7b7a77484abce [file] [log] [blame]
Carsten Ziegelerb61fe0e2008-01-03 09:24:12 +00001<!--
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 Ziegeler4fec0962008-01-11 16:13:31 +000019<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">
Michael E. Rodriguezcafcf242006-03-25 17:25:49 +000020 <parent>
21 <groupId>org.apache.felix</groupId>
22 <artifactId>felix</artifactId>
Clement Escoffier4ae86972009-04-09 12:09:09 +000023 <version>1.0.4</version>
Karl Pauls589e2b32007-07-11 18:29:29 +000024 <relativePath>../pom/pom.xml</relativePath>
Michael E. Rodriguezcafcf242006-03-25 17:25:49 +000025 </parent>
26 <modelVersion>4.0.0</modelVersion>
Richard S. Hall0ad669d2007-06-18 19:05:48 +000027 <packaging>bundle</packaging>
Michael E. Rodriguezcafcf242006-03-25 17:25:49 +000028 <name>Apache Felix Service Binder</name>
29 <artifactId>org.apache.felix.servicebinder</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000030 <version>0.9.0-SNAPSHOT</version>
Michael E. Rodriguezcafcf242006-03-25 17:25:49 +000031 <dependencies>
32 <dependency>
33 <groupId>${pom.groupId}</groupId>
Michael E. Rodriguezd70c2912006-03-30 19:57:31 +000034 <artifactId>org.osgi.core</artifactId>
Richard S. Hallf5a813c2008-11-19 18:55:40 +000035 <version>1.0.1</version>
Michael E. Rodriguezcafcf242006-03-25 17:25:49 +000036 <scope>provided</scope>
37 </dependency>
38 <dependency>
Michael E. Rodriguez406386d2007-03-20 02:56:45 +000039 <groupId>net.sf.kxml</groupId>
Richard S. Halld95fb4f2006-07-14 19:52:53 +000040 <artifactId>kxml2</artifactId>
41 <version>2.2.2</version>
Michael E. Rodriguezcafcf242006-03-25 17:25:49 +000042 </dependency>
43 </dependencies>
44 <build>
45 <plugins>
46 <plugin>
Richard S. Hall0ad669d2007-06-18 19:05:48 +000047 <groupId>org.apache.felix</groupId>
48 <artifactId>maven-bundle-plugin</artifactId>
Stuart McCulloch876ca722008-02-26 17:15:42 +000049 <version>1.4.0</version>
Michael E. Rodriguezcafcf242006-03-25 17:25:49 +000050 <extensions>true</extensions>
51 <configuration>
Richard S. Hall0ad669d2007-06-18 19:05:48 +000052 <instructions>
53 <Bundle-Name>Service Binder</Bundle-Name>
54 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
Carsten Ziegelercf6e51b2008-04-17 06:33:59 +000055 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
Richard S. Hall0ad669d2007-06-18 19:05:48 +000056 <!--<Bundle-Version>1.1.2</Bundle-Version>-->
57 <Bundle-Description>
Michael E. Rodriguezcafcf242006-03-25 17:25:49 +000058 This bundle provides a mechanism to automate service dependency management.
Richard S. Hall0ad669d2007-06-18 19:05:48 +000059 </Bundle-Description>
60 <Bundle-Activator>
Michael E. Rodriguezcafcf242006-03-25 17:25:49 +000061 org.apache.felix.servicebinder.impl.Activator
Richard S. Hall0ad669d2007-06-18 19:05:48 +000062 </Bundle-Activator>
63 <Export-Package>
Michael E. Rodriguezcafcf242006-03-25 17:25:49 +000064 org.apache.felix.servicebinder; specification-version="1.1.0",org.apache.felix.servicebinder.architecture; specification-version="1.1.0"
Richard S. Hall0ad669d2007-06-18 19:05:48 +000065 </Export-Package>
66 <Private-Package>org.apache.felix.servicebinder.*,org.kxml2.*,org.xmlpull.*</Private-Package>
67 <Import-Package>!org.apache.felix.servicebinder.*,*</Import-Package>
68 <Metadata-Location>metadata.xml</Metadata-Location>
69 </instructions>
Michael E. Rodriguezcafcf242006-03-25 17:25:49 +000070 </configuration>
71 </plugin>
72 </plugins>
73 </build>
74</project>