blob: 204601923e50a503ebbdaed28ed19121b53db1bd [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-->
Alex Karasulu07d20492006-03-06 15:35:44 +000019<project>
20 <parent>
21 <groupId>org.apache.felix</groupId>
22 <artifactId>felix</artifactId>
Carsten Ziegelerc19e17c2008-01-03 09:15:17 +000023 <version>1.0.1</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 Pauls34724e92007-09-17 22:25:00 +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. Hallb35c0382007-07-16 17:29:17 +000037 <!--dependency>
38 We include ServiceTracker source code directly to avoid some
39 packaging issues. Will need to edit main pom to exclude this
40 dependency once it is added back in.
Richard S. Hall487c44d2007-05-22 15:58:30 +000041 <groupId>${pom.groupId}</groupId>
42 <artifactId>org.osgi.compendium</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000043 <version>0.9.0-SNAPSHOT</version>
Richard S. Hallb35c0382007-07-16 17:29:17 +000044 </dependency-->
Alex Karasulu07d20492006-03-06 15:35:44 +000045 </dependencies>
Alex Karasulu5cfd2a02006-03-09 14:15:38 +000046 <build>
Richard S. Hall1da4e542006-11-02 21:45:44 +000047 <plugins>
48 <plugin>
49 <groupId>org.apache.felix</groupId>
Richard S. Hall797bc982007-05-21 18:35:07 +000050 <artifactId>maven-bundle-plugin</artifactId>
Stuart McCulloch871e7db2007-12-20 17:03:43 +000051 <version>1.1.0-SNAPSHOT</version>
Richard S. Hall1da4e542006-11-02 21:45:44 +000052 <extensions>true</extensions>
53 <configuration>
54 <instructions>
55 <Bundle-Name>Apache Felix Framework</Bundle-Name>
56 <Bundle-Description>OSGi R4 framework implementation.</Bundle-Description>
Karl Pauls786d60e2007-09-12 18:07:06 +000057 <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 +000058 <Private-Package>org.apache.felix.moduleloader.*,org.apache.felix.framework.*</Private-Package>
Richard S. Hall1da4e542006-11-02 21:45:44 +000059 <Import-Package>!*</Import-Package>
60 <Include-Resource>{src/main/resources/},org/osgi/framework/=target/classes/org/osgi/framework/</Include-Resource>
61 </instructions>
62 </configuration>
63 </plugin>
64 </plugins>
Alex Karasulu5cfd2a02006-03-09 14:15:38 +000065 </build>
Alex Karasulu07d20492006-03-06 15:35:44 +000066</project>