blob: fda2b74a3f56f179b6808ab919ad413376554a60 [file] [log] [blame]
Alex Karasulu7760dda2006-03-07 04:51:43 +00001<project>
2 <parent>
3 <groupId>org.apache.felix</groupId>
4 <artifactId>felix</artifactId>
5 <version>0.8-SNAPSHOT</version>
6 </parent>
7 <modelVersion>4.0.0</modelVersion>
8 <packaging>osgi-bundle</packaging>
9 <name>Apache Felix Examples: Service Event Listener</name>
10 <artifactId>org.apache.felix.examples.eventlistener</artifactId>
11 <dependencies>
12 <dependency>
13 <groupId>${pom.groupId}</groupId>
14 <artifactId>org.osgi</artifactId>
15 <version>${pom.version}</version>
16 <scope>provided</scope>
17 </dependency>
18 </dependencies>
19 <build>
20 <plugins>
21 <plugin>
22 <groupId>org.apache.felix.plugins</groupId>
23 <artifactId>maven-osgi-plugin</artifactId>
24 <version>${pom.version}</version>
25 <extensions>true</extensions>
26 <configuration>
27 <osgiManifest>
28 <bundleName>Service listener example</bundleName>
29 <bundleDescription>
30 Bundle listening for service events: displays a message on startup and when service events occur.
31 </bundleDescription>
32 <bundleActivator>
33 org.apache.felix.examples.eventlistener.Activator
34 </bundleActivator>
35 <bundleSymbolicName>
36 org.apache.felix.examples.eventlistener
37 </bundleSymbolicName>
38 </osgiManifest>
39 </configuration>
40 </plugin>
41 </plugins>
42 </build>
43</project>