Karl Pauls | 9176193 | 2006-04-28 11:12:54 +0000 | [diff] [blame] | 1 | <project> |
| 2 | <parent> |
| 3 | <groupId>org.apache.felix</groupId> |
| 4 | <artifactId>felix</artifactId> |
Carsten Ziegeler | c9e4bfd | 2007-08-20 11:19:34 +0000 | [diff] [blame] | 5 | <version>1.0.0</version> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 6 | <relativePath>../../pom/pom.xml</relativePath> |
Karl Pauls | 9176193 | 2006-04-28 11:12:54 +0000 | [diff] [blame] | 7 | </parent> |
| 8 | <modelVersion>4.0.0</modelVersion> |
Karl Pauls | b0a1716 | 2006-11-03 09:25:08 +0000 | [diff] [blame] | 9 | <packaging>bundle</packaging> |
Karl Pauls | 9176193 | 2006-04-28 11:12:54 +0000 | [diff] [blame] | 10 | <name>Apache Felix EventAdmin</name> |
Karl Pauls | b0a1716 | 2006-11-03 09:25:08 +0000 | [diff] [blame] | 11 | <description> |
| 12 | This bundle provides an implementation of the OSGi R4 EventAdmin service. |
| 13 | </description> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 14 | <version>0.9.0-SNAPSHOT</version> |
Karl Pauls | 9176193 | 2006-04-28 11:12:54 +0000 | [diff] [blame] | 15 | <artifactId>org.apache.felix.eventadmin</artifactId> |
| 16 | <dependencies> |
| 17 | <dependency> |
| 18 | <groupId>${pom.groupId}</groupId> |
| 19 | <artifactId>org.osgi.core</artifactId> |
Carsten Ziegeler | c9e4bfd | 2007-08-20 11:19:34 +0000 | [diff] [blame] | 20 | <version>1.0.0</version> |
Karl Pauls | 9176193 | 2006-04-28 11:12:54 +0000 | [diff] [blame] | 21 | </dependency> |
| 22 | <dependency> |
| 23 | <groupId>${pom.groupId}</groupId> |
| 24 | <artifactId>org.osgi.compendium</artifactId> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 25 | <version>0.9.0-SNAPSHOT</version> |
Karl Pauls | 9176193 | 2006-04-28 11:12:54 +0000 | [diff] [blame] | 26 | </dependency> |
| 27 | </dependencies> |
| 28 | <build> |
| 29 | <plugins> |
| 30 | <plugin> |
Karl Pauls | b0a1716 | 2006-11-03 09:25:08 +0000 | [diff] [blame] | 31 | <groupId>org.apache.felix</groupId> |
Richard S. Hall | 797bc98 | 2007-05-21 18:35:07 +0000 | [diff] [blame] | 32 | <artifactId>maven-bundle-plugin</artifactId> |
Carsten Ziegeler | c9e4bfd | 2007-08-20 11:19:34 +0000 | [diff] [blame] | 33 | <version>1.0.0</version> |
Karl Pauls | 9176193 | 2006-04-28 11:12:54 +0000 | [diff] [blame] | 34 | <extensions>true</extensions> |
| 35 | <configuration> |
Karl Pauls | b0a1716 | 2006-11-03 09:25:08 +0000 | [diff] [blame] | 36 | <instructions> |
| 37 | <Bundle-SymbolicName> |
| 38 | ${pom.artifactId} |
| 39 | </Bundle-SymbolicName> |
| 40 | <Bundle-Activator> |
| 41 | ${pom.artifactId}.impl.Activator |
| 42 | </Bundle-Activator> |
Karl Pauls | f876e36 | 2007-01-23 14:31:08 +0000 | [diff] [blame] | 43 | <DynamicImport-Package> |
Karl Pauls | 9176193 | 2006-04-28 11:12:54 +0000 | [diff] [blame] | 44 | org.osgi.service.log |
Karl Pauls | f876e36 | 2007-01-23 14:31:08 +0000 | [diff] [blame] | 45 | </DynamicImport-Package> |
Karl Pauls | b0a1716 | 2006-11-03 09:25:08 +0000 | [diff] [blame] | 46 | <Import-Package>!org.osgi.service.log,*</Import-Package> |
| 47 | <Export-Package>org.osgi.service.event</Export-Package> |
| 48 | <Private-Package>org.apache.felix.eventadmin.impl.*</Private-Package> |
Karl Pauls | b0a1716 | 2006-11-03 09:25:08 +0000 | [diff] [blame] | 49 | <Import-Service> |
Karl Pauls | 9176193 | 2006-04-28 11:12:54 +0000 | [diff] [blame] | 50 | 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] | 51 | </Import-Service> |
| 52 | <Export-Service> |
Karl Pauls | 9176193 | 2006-04-28 11:12:54 +0000 | [diff] [blame] | 53 | org.osgi.service.event.EventAdmin |
Karl Pauls | b0a1716 | 2006-11-03 09:25:08 +0000 | [diff] [blame] | 54 | </Export-Service> |
| 55 | </instructions> |
Karl Pauls | 9176193 | 2006-04-28 11:12:54 +0000 | [diff] [blame] | 56 | </configuration> |
| 57 | </plugin> |
| 58 | </plugins> |
| 59 | </build> |
Karl Pauls | 13dcf8c | 2006-08-22 21:39:30 +0000 | [diff] [blame] | 60 | </project> |