blob: 88a1dd7916e2a1474fe594e050c03ffcd253f468 [file] [log] [blame]
Alex Karasulu7760dda2006-03-07 04:51:43 +00001<project>
2 <parent>
3 <groupId>org.apache.felix</groupId>
4 <artifactId>felix</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +00005 <version>1.1.0-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>
Karl Pauls0a3858c2007-07-13 22:03:31 +000012 <version>0.9.0-SNAPSHOT</version>
Alex Karasulu7760dda2006-03-07 04:51:43 +000013 <dependencies>
14 <dependency>
15 <groupId>${pom.groupId}</groupId>
Michael E. Rodriguez3b4e4ef2006-04-02 20:07:31 +000016 <artifactId>org.osgi.core</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000017 <version>1.1.0-SNAPSHOT</version>
Alex Karasulu7760dda2006-03-07 04:51:43 +000018 <scope>provided</scope>
19 </dependency>
20 </dependencies>
21 <build>
22 <plugins>
23 <plugin>
24 <groupId>org.apache.felix.plugins</groupId>
25 <artifactId>maven-osgi-plugin</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000026 <version>0.9.0-SNAPSHOT</version>
Alex Karasulu7760dda2006-03-07 04:51:43 +000027 <extensions>true</extensions>
28 <configuration>
29 <osgiManifest>
30 <bundleName>Service listener example</bundleName>
31 <bundleDescription>
32 Bundle listening for service events: displays a message on startup and when service events occur.
33 </bundleDescription>
34 <bundleActivator>
35 org.apache.felix.examples.eventlistener.Activator
36 </bundleActivator>
37 <bundleSymbolicName>
38 org.apache.felix.examples.eventlistener
39 </bundleSymbolicName>
Karl Pauls3b98a3e2006-04-18 21:12:09 +000040 <importPackage>
41 org.osgi.framework
42 </importPackage>
Alex Karasulu7760dda2006-03-07 04:51:43 +000043 </osgiManifest>
44 </configuration>
45 </plugin>
46 </plugins>
47 </build>
48</project>