blob: 78bc9ee563cc980ead86724ccb1800dbfe02100c [file] [log] [blame]
Karl Pauls52b15d62006-06-24 15:05:58 +00001<project>
2 <parent>
3 <groupId>org.apache.felix</groupId>
4 <artifactId>felix</artifactId>
Richard S. Hall4d5cf062006-12-06 16:12:42 +00005 <version>0.9.0-incubator-SNAPSHOT</version>
Karl Pauls589e2b32007-07-11 18:29:29 +00006 <relativePath>../../pom/pom.xml</relativePath>
Karl Pauls52b15d62006-06-24 15:05:58 +00007 </parent>
8 <modelVersion>4.0.0</modelVersion>
Karl Pauls7d1df4b2006-11-03 13:08:31 +00009 <packaging>bundle</packaging>
Karl Pauls52b15d62006-06-24 15:05:58 +000010 <name>Apache Felix EventAdmin Bridge UserAdmin</name>
11 <artifactId>org.apache.felix.eventadmin.bridge.useradmin</artifactId>
Karl Pauls7d1df4b2006-11-03 13:08:31 +000012 <description>
13 This bundle provides a bridge between UserAdmin and EventAdmin events.
14 </description>
Karl Pauls52b15d62006-06-24 15:05:58 +000015 <dependencies>
16 <dependency>
17 <groupId>${pom.groupId}</groupId>
18 <artifactId>org.osgi.core</artifactId>
19 <version>${pom.version}</version>
Karl Pauls52b15d62006-06-24 15:05:58 +000020 </dependency>
21 <dependency>
22 <groupId>${pom.groupId}</groupId>
23 <artifactId>org.osgi.compendium</artifactId>
24 <version>${pom.version}</version>
Karl Pauls52b15d62006-06-24 15:05:58 +000025 </dependency>
26 </dependencies>
27 <build>
28 <plugins>
29 <plugin>
Karl Pauls7d1df4b2006-11-03 13:08:31 +000030 <groupId>org.apache.felix</groupId>
Richard S. Hall797bc982007-05-21 18:35:07 +000031 <artifactId>maven-bundle-plugin</artifactId>
Karl Pauls52b15d62006-06-24 15:05:58 +000032 <extensions>true</extensions>
33 <configuration>
Karl Pauls7d1df4b2006-11-03 13:08:31 +000034 <instructions>
35 <Bundle-Activator>${pom.artifactId}.Activator</Bundle-Activator>
36 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
37 <Private-Package>${pom.artifactId}.*</Private-Package>
Karl Pauls7d1df4b2006-11-03 13:08:31 +000038 </instructions>
Karl Pauls52b15d62006-06-24 15:05:58 +000039 </configuration>
40 </plugin>
41 </plugins>
42 </build>
43</project>