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> |
Richard S. Hall | 6748ac7 | 2006-12-07 20:30:11 +0000 | [diff] [blame] | 27 | <name>Apache Felix Framework</name> |
Alex Karasulu | 07d2049 | 2006-03-06 15:35:44 +0000 | [diff] [blame] | 28 | <artifactId>org.apache.felix.framework</artifactId> |
| 29 | <dependencies> |
| 30 | <dependency> |
| 31 | <groupId>${pom.groupId}</groupId> |
Michael E. Rodriguez | 963719b | 2006-04-03 15:04:03 +0000 | [diff] [blame] | 32 | <artifactId>org.osgi.core</artifactId> |
Alex Karasulu | bfd9996 | 2006-03-07 02:35:38 +0000 | [diff] [blame] | 33 | <version>${pom.version}</version> |
| 34 | </dependency> |
Alex Karasulu | 07d2049 | 2006-03-06 15:35:44 +0000 | [diff] [blame] | 35 | </dependencies> |
Alex Karasulu | 5cfd2a0 | 2006-03-09 14:15:38 +0000 | [diff] [blame] | 36 | <build> |
Richard S. Hall | 1da4e54 | 2006-11-02 21:45:44 +0000 | [diff] [blame] | 37 | <plugins> |
| 38 | <plugin> |
| 39 | <groupId>org.apache.felix</groupId> |
| 40 | <artifactId>maven-bundle-plugin</artifactId> |
| 41 | <extensions>true</extensions> |
| 42 | <configuration> |
| 43 | <instructions> |
| 44 | <Bundle-Name>Apache Felix Framework</Bundle-Name> |
| 45 | <Bundle-Description>OSGi R4 framework implementation.</Bundle-Description> |
| 46 | <Export-Package>org.osgi.framework,org.osgi.service.packageadmin,org.osgi.service.url,org.osgi.service.startlevel</Export-Package> |
| 47 | <Private-Package>org.apache.felix.*</Private-Package> |
| 48 | <Import-Package>!*</Import-Package> |
| 49 | <Include-Resource>{src/main/resources/},org/osgi/framework/=target/classes/org/osgi/framework/</Include-Resource> |
| 50 | </instructions> |
| 51 | </configuration> |
| 52 | </plugin> |
| 53 | </plugins> |
Alex Karasulu | 5cfd2a0 | 2006-03-09 14:15:38 +0000 | [diff] [blame] | 54 | </build> |
Alex Karasulu | 07d2049 | 2006-03-06 15:35:44 +0000 | [diff] [blame] | 55 | </project> |