Carsten Ziegeler | bf338dd | 2008-01-03 09:11:33 +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 | --> |
Karl Pauls | 9176193 | 2006-04-28 11:12:54 +0000 | [diff] [blame] | 19 | <project> |
| 20 | <parent> |
| 21 | <groupId>org.apache.felix</groupId> |
| 22 | <artifactId>felix</artifactId> |
Carsten Ziegeler | bf338dd | 2008-01-03 09:11:33 +0000 | [diff] [blame] | 23 | <version>1.0.1</version> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 24 | <relativePath>../../pom/pom.xml</relativePath> |
Karl Pauls | 9176193 | 2006-04-28 11:12:54 +0000 | [diff] [blame] | 25 | </parent> |
| 26 | <modelVersion>4.0.0</modelVersion> |
Karl Pauls | b0a1716 | 2006-11-03 09:25:08 +0000 | [diff] [blame] | 27 | <packaging>bundle</packaging> |
Karl Pauls | 9176193 | 2006-04-28 11:12:54 +0000 | [diff] [blame] | 28 | <name>Apache Felix EventAdmin</name> |
Karl Pauls | b0a1716 | 2006-11-03 09:25:08 +0000 | [diff] [blame] | 29 | <description> |
| 30 | This bundle provides an implementation of the OSGi R4 EventAdmin service. |
| 31 | </description> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 32 | <version>0.9.0-SNAPSHOT</version> |
Karl Pauls | 9176193 | 2006-04-28 11:12:54 +0000 | [diff] [blame] | 33 | <artifactId>org.apache.felix.eventadmin</artifactId> |
| 34 | <dependencies> |
| 35 | <dependency> |
| 36 | <groupId>${pom.groupId}</groupId> |
| 37 | <artifactId>org.osgi.core</artifactId> |
Carsten Ziegeler | c9e4bfd | 2007-08-20 11:19:34 +0000 | [diff] [blame] | 38 | <version>1.0.0</version> |
Karl Pauls | 9176193 | 2006-04-28 11:12:54 +0000 | [diff] [blame] | 39 | </dependency> |
| 40 | <dependency> |
| 41 | <groupId>${pom.groupId}</groupId> |
| 42 | <artifactId>org.osgi.compendium</artifactId> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 43 | <version>0.9.0-SNAPSHOT</version> |
Karl Pauls | 9176193 | 2006-04-28 11:12:54 +0000 | [diff] [blame] | 44 | </dependency> |
| 45 | </dependencies> |
| 46 | <build> |
| 47 | <plugins> |
| 48 | <plugin> |
Karl Pauls | b0a1716 | 2006-11-03 09:25:08 +0000 | [diff] [blame] | 49 | <groupId>org.apache.felix</groupId> |
Richard S. Hall | 797bc98 | 2007-05-21 18:35:07 +0000 | [diff] [blame] | 50 | <artifactId>maven-bundle-plugin</artifactId> |
Stuart McCulloch | 871e7db | 2007-12-20 17:03:43 +0000 | [diff] [blame] | 51 | <version>1.1.0-SNAPSHOT</version> |
Karl Pauls | 9176193 | 2006-04-28 11:12:54 +0000 | [diff] [blame] | 52 | <extensions>true</extensions> |
| 53 | <configuration> |
Karl Pauls | b0a1716 | 2006-11-03 09:25:08 +0000 | [diff] [blame] | 54 | <instructions> |
| 55 | <Bundle-SymbolicName> |
| 56 | ${pom.artifactId} |
| 57 | </Bundle-SymbolicName> |
| 58 | <Bundle-Activator> |
| 59 | ${pom.artifactId}.impl.Activator |
| 60 | </Bundle-Activator> |
Karl Pauls | f876e36 | 2007-01-23 14:31:08 +0000 | [diff] [blame] | 61 | <DynamicImport-Package> |
Karl Pauls | 9176193 | 2006-04-28 11:12:54 +0000 | [diff] [blame] | 62 | org.osgi.service.log |
Karl Pauls | f876e36 | 2007-01-23 14:31:08 +0000 | [diff] [blame] | 63 | </DynamicImport-Package> |
Karl Pauls | b0a1716 | 2006-11-03 09:25:08 +0000 | [diff] [blame] | 64 | <Import-Package>!org.osgi.service.log,*</Import-Package> |
| 65 | <Export-Package>org.osgi.service.event</Export-Package> |
| 66 | <Private-Package>org.apache.felix.eventadmin.impl.*</Private-Package> |
Karl Pauls | b0a1716 | 2006-11-03 09:25:08 +0000 | [diff] [blame] | 67 | <Import-Service> |
Karl Pauls | 9176193 | 2006-04-28 11:12:54 +0000 | [diff] [blame] | 68 | org.osgi.service.event.EventHandler, org.osgi.service.log.LogService, org.osgi.service.log.LogReaderService |
Karl Pauls | b0a1716 | 2006-11-03 09:25:08 +0000 | [diff] [blame] | 69 | </Import-Service> |
| 70 | <Export-Service> |
Karl Pauls | 9176193 | 2006-04-28 11:12:54 +0000 | [diff] [blame] | 71 | org.osgi.service.event.EventAdmin |
Karl Pauls | b0a1716 | 2006-11-03 09:25:08 +0000 | [diff] [blame] | 72 | </Export-Service> |
| 73 | </instructions> |
Karl Pauls | 9176193 | 2006-04-28 11:12:54 +0000 | [diff] [blame] | 74 | </configuration> |
| 75 | </plugin> |
| 76 | </plugins> |
| 77 | </build> |
Karl Pauls | 13dcf8c | 2006-08-22 21:39:30 +0000 | [diff] [blame] | 78 | </project> |