blob: c58b4c339ea18ac421d779c7d9b6cb7dea3a2ef2 [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>
Alex Karasulu7760dda2006-03-07 04:51:43 +00006 </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>
Michael E. Rodriguez3b4e4ef2006-04-02 20:07:31 +000014 <artifactId>org.osgi.core</artifactId>
Alex Karasulu7760dda2006-03-07 04:51:43 +000015 <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>
Karl Pauls3b98a3e2006-04-18 21:12:09 +000038 <importPackage>
39 org.osgi.framework
40 </importPackage>
Alex Karasulu7760dda2006-03-07 04:51:43 +000041 </osgiManifest>
42 </configuration>
43 </plugin>
44 </plugins>
45 </build>
46</project>