Karl Pauls | 12fab7e | 2006-05-06 11:59:40 +0000 | [diff] [blame] | 1 | <project> |
| 2 | <parent> |
| 3 | <groupId>org.apache.felix</groupId> |
| 4 | <artifactId>felix</artifactId> |
| 5 | <version>0.8.0-SNAPSHOT</version> |
| 6 | </parent> |
| 7 | <modelVersion>4.0.0</modelVersion> |
Karl Pauls | 3135a69 | 2006-11-03 13:08:59 +0000 | [diff] [blame] | 8 | <packaging>bundle</packaging> |
Karl Pauls | 12fab7e | 2006-05-06 11:59:40 +0000 | [diff] [blame] | 9 | <name>Apache Felix EventAdmin Bridge UPnP</name> |
| 10 | <artifactId>org.apache.felix.eventadmin.bridge.upnp</artifactId> |
Karl Pauls | 3135a69 | 2006-11-03 13:08:59 +0000 | [diff] [blame] | 11 | <description> |
| 12 | This bundle provides a bridge between UPnP and EventAdmin events. |
| 13 | </description> |
Karl Pauls | 12fab7e | 2006-05-06 11:59:40 +0000 | [diff] [blame] | 14 | <dependencies> |
| 15 | <dependency> |
| 16 | <groupId>${pom.groupId}</groupId> |
| 17 | <artifactId>org.osgi.core</artifactId> |
| 18 | <version>${pom.version}</version> |
Karl Pauls | 12fab7e | 2006-05-06 11:59:40 +0000 | [diff] [blame] | 19 | </dependency> |
| 20 | <dependency> |
| 21 | <groupId>${pom.groupId}</groupId> |
| 22 | <artifactId>org.osgi.compendium</artifactId> |
| 23 | <version>${pom.version}</version> |
Karl Pauls | 12fab7e | 2006-05-06 11:59:40 +0000 | [diff] [blame] | 24 | </dependency> |
| 25 | </dependencies> |
| 26 | <build> |
| 27 | <plugins> |
| 28 | <plugin> |
Karl Pauls | 3135a69 | 2006-11-03 13:08:59 +0000 | [diff] [blame] | 29 | <groupId>org.apache.felix</groupId> |
| 30 | <artifactId>maven-bundle-plugin</artifactId> |
Karl Pauls | 12fab7e | 2006-05-06 11:59:40 +0000 | [diff] [blame] | 31 | <extensions>true</extensions> |
| 32 | <configuration> |
Karl Pauls | 3135a69 | 2006-11-03 13:08:59 +0000 | [diff] [blame] | 33 | <instructions> |
| 34 | <Bundle-Activator>${pom.artifactId}.Activator</Bundle-Activator> |
| 35 | <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> |
| 36 | <Import-Service> |
Karl Pauls | 8e912cf | 2006-06-21 20:29:23 +0000 | [diff] [blame] | 37 | org.osgi.service.event.EventAdmin, |
| 38 | org.osgi.service.event.EventHandler |
Karl Pauls | 3135a69 | 2006-11-03 13:08:59 +0000 | [diff] [blame] | 39 | </Import-Service> |
| 40 | <Export-Service> |
Karl Pauls | 12fab7e | 2006-05-06 11:59:40 +0000 | [diff] [blame] | 41 | org.osgi.service.upnp.UPnPEventListener |
Karl Pauls | 3135a69 | 2006-11-03 13:08:59 +0000 | [diff] [blame] | 42 | </Export-Service> |
| 43 | <Private-Package>${pom.artifactId}.*</Private-Package> |
Karl Pauls | 3135a69 | 2006-11-03 13:08:59 +0000 | [diff] [blame] | 44 | </instructions> |
Karl Pauls | 12fab7e | 2006-05-06 11:59:40 +0000 | [diff] [blame] | 45 | </configuration> |
| 46 | </plugin> |
| 47 | </plugins> |
| 48 | </build> |
| 49 | </project> |