blob: 0e420716164dae245e41f6da82539fca90b7df04 [file] [log] [blame]
Karl Pauls4ebe5082006-10-30 15:00:08 +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">
Alex Karasulu07d20492006-03-06 15:35:44 +000020 <parent>
21 <groupId>org.apache.felix</groupId>
22 <artifactId>felix</artifactId>
Carsten Ziegelerb7251fa2008-01-16 07:37:24 +000023 <version>1.0.2</version>
Karl Pauls589e2b32007-07-11 18:29:29 +000024 <relativePath>../pom/pom.xml</relativePath>
Alex Karasulu07d20492006-03-06 15:35:44 +000025 </parent>
26 <modelVersion>4.0.0</modelVersion>
Richard S. Hall1da4e542006-11-02 21:45:44 +000027 <packaging>bundle</packaging>
Richard S. Hall6748ac72006-12-07 20:30:11 +000028 <name>Apache Felix Framework</name>
Alex Karasulu07d20492006-03-06 15:35:44 +000029 <artifactId>org.apache.felix.framework</artifactId>
Karl Pauls13fa6982008-01-28 09:45:41 +000030 <version>1.1.0-SNAPSHOT</version>
Alex Karasulu07d20492006-03-06 15:35:44 +000031 <dependencies>
32 <dependency>
33 <groupId>${pom.groupId}</groupId>
Michael E. Rodriguez963719b2006-04-03 15:04:03 +000034 <artifactId>org.osgi.core</artifactId>
Karl Paulsbfdc6bd2007-09-17 22:16:09 +000035 <version>1.0.0</version>
Alex Karasulubfd99962006-03-07 02:35:38 +000036 </dependency>
Richard S. Hall4a591ba2008-01-27 18:42:15 +000037 <dependency>
Richard S. Hall487c44d2007-05-22 15:58:30 +000038 <groupId>${pom.groupId}</groupId>
39 <artifactId>org.osgi.compendium</artifactId>
Richard S. Hall4a591ba2008-01-27 18:42:15 +000040 <version>1.0.0</version>
41 </dependency>
Alex Karasulu07d20492006-03-06 15:35:44 +000042 </dependencies>
Alex Karasulu5cfd2a02006-03-09 14:15:38 +000043 <build>
Richard S. Hall1da4e542006-11-02 21:45:44 +000044 <plugins>
45 <plugin>
46 <groupId>org.apache.felix</groupId>
Richard S. Hall797bc982007-05-21 18:35:07 +000047 <artifactId>maven-bundle-plugin</artifactId>
Stuart McCullochcb8192f2008-02-18 07:37:05 +000048 <version>1.2.1</version>
Richard S. Hall1da4e542006-11-02 21:45:44 +000049 <extensions>true</extensions>
50 <configuration>
51 <instructions>
52 <Bundle-Name>Apache Felix Framework</Bundle-Name>
53 <Bundle-Description>OSGi R4 framework implementation.</Bundle-Description>
Karl Pauls786d60e2007-09-12 18:07:06 +000054 <Export-Package>org.osgi.framework;-split-package:=merge-first,org.osgi.service.packageadmin,org.osgi.service.url,org.osgi.service.startlevel,org.osgi.util.tracker</Export-Package>
Richard S. Hall487c44d2007-05-22 15:58:30 +000055 <Private-Package>org.apache.felix.moduleloader.*,org.apache.felix.framework.*</Private-Package>
Richard S. Hall1da4e542006-11-02 21:45:44 +000056 <Import-Package>!*</Import-Package>
57 <Include-Resource>{src/main/resources/},org/osgi/framework/=target/classes/org/osgi/framework/</Include-Resource>
58 </instructions>
59 </configuration>
60 </plugin>
61 </plugins>
Alex Karasulu5cfd2a02006-03-09 14:15:38 +000062 </build>
Alex Karasulu07d20492006-03-06 15:35:44 +000063</project>