blob: 21ed17cbc61820af5bd1d0d3875714f11d454d20 [file] [log] [blame]
Alex Karasulu7760dda2006-03-07 04:51:43 +00001<project>
2 <parent>
3 <groupId>org.apache.felix</groupId>
4 <artifactId>felix</artifactId>
Richard S. Hallf2be1962006-12-22 19:46:42 +00005 <version>0.9.0-incubator-SNAPSHOT</version>
Karl Pauls589e2b32007-07-11 18:29:29 +00006 <relativePath>../../pom/pom.xml</relativePath>
Alex Karasulu7760dda2006-03-07 04:51:43 +00007 </parent>
8 <modelVersion>4.0.0</modelVersion>
9 <packaging>osgi-bundle</packaging>
10 <name>Apache Felix Examples: Service Event Listener</name>
11 <artifactId>org.apache.felix.examples.eventlistener</artifactId>
12 <dependencies>
13 <dependency>
14 <groupId>${pom.groupId}</groupId>
Michael E. Rodriguez3b4e4ef2006-04-02 20:07:31 +000015 <artifactId>org.osgi.core</artifactId>
Alex Karasulu7760dda2006-03-07 04:51:43 +000016 <version>${pom.version}</version>
17 <scope>provided</scope>
18 </dependency>
19 </dependencies>
20 <build>
21 <plugins>
22 <plugin>
23 <groupId>org.apache.felix.plugins</groupId>
24 <artifactId>maven-osgi-plugin</artifactId>
25 <version>${pom.version}</version>
26 <extensions>true</extensions>
27 <configuration>
28 <osgiManifest>
29 <bundleName>Service listener example</bundleName>
30 <bundleDescription>
31 Bundle listening for service events: displays a message on startup and when service events occur.
32 </bundleDescription>
33 <bundleActivator>
34 org.apache.felix.examples.eventlistener.Activator
35 </bundleActivator>
36 <bundleSymbolicName>
37 org.apache.felix.examples.eventlistener
38 </bundleSymbolicName>
Karl Pauls3b98a3e2006-04-18 21:12:09 +000039 <importPackage>
40 org.osgi.framework
41 </importPackage>
Alex Karasulu7760dda2006-03-07 04:51:43 +000042 </osgiManifest>
43 </configuration>
44 </plugin>
45 </plugins>
46 </build>
47</project>