blob: c32f719a8ce2a35a8852ceaf9b6fd70d8bb8d2a8 [file] [log] [blame]
Carsten Ziegelerbf338dd2008-01-03 09:11:33 +00001<!--
2Licensed to the Apache Software Foundation (ASF) under one
3or more contributor license agreements. See the NOTICE file
4distributed with this work for additional information
5regarding copyright ownership. The ASF licenses this file
6to you under the Apache License, Version 2.0 (the
7"License"); you may not use this file except in compliance
8with the License. You may obtain a copy of the License at
9
10http://www.apache.org/licenses/LICENSE-2.0
11
12Unless required by applicable law or agreed to in writing,
13software distributed under the License is distributed on an
14"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15KIND, either express or implied. See the License for the
16specific language governing permissions and limitations
17under the License.
18-->
Alex Karasulu7760dda2006-03-07 04:51:43 +000019<project>
20 <parent>
21 <groupId>org.apache.felix</groupId>
22 <artifactId>felix</artifactId>
Carsten Ziegelerb7251fa2008-01-16 07:37:24 +000023 <version>1.0.2</version>
Karl Pauls589e2b32007-07-11 18:29:29 +000024 <relativePath>../../pom/pom.xml</relativePath>
Alex Karasulu7760dda2006-03-07 04:51:43 +000025 </parent>
26 <modelVersion>4.0.0</modelVersion>
Richard S. Hall02496082007-08-23 15:29:20 +000027 <packaging>bundle</packaging>
28 <name>Apache Felix Example Service Event Listener</name>
Alex Karasulu7760dda2006-03-07 04:51:43 +000029 <artifactId>org.apache.felix.examples.eventlistener</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000030 <version>0.9.0-SNAPSHOT</version>
Alex Karasulu7760dda2006-03-07 04:51:43 +000031 <dependencies>
32 <dependency>
33 <groupId>${pom.groupId}</groupId>
Michael E. Rodriguez3b4e4ef2006-04-02 20:07:31 +000034 <artifactId>org.osgi.core</artifactId>
Richard S. Hall02496082007-08-23 15:29:20 +000035 <version>1.0.0</version>
Alex Karasulu7760dda2006-03-07 04:51:43 +000036 <scope>provided</scope>
37 </dependency>
38 </dependencies>
39 <build>
40 <plugins>
41 <plugin>
Richard S. Hall02496082007-08-23 15:29:20 +000042 <groupId>org.apache.felix</groupId>
43 <artifactId>maven-bundle-plugin</artifactId>
Carsten Ziegelere5cfd9f2008-01-22 07:35:57 +000044 <version>1.2.0</version>
Alex Karasulu7760dda2006-03-07 04:51:43 +000045 <extensions>true</extensions>
46 <configuration>
Richard S. Hall02496082007-08-23 15:29:20 +000047 <instructions>
48 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
49 <Bundle-Name>Example Service Listener</Bundle-Name>
50 <Bundle-Description>
Alex Karasulu7760dda2006-03-07 04:51:43 +000051 Bundle listening for service events: displays a message on startup and when service events occur.
Richard S. Hall02496082007-08-23 15:29:20 +000052 </Bundle-Description>
53 <Bundle-Activator>
Alex Karasulu7760dda2006-03-07 04:51:43 +000054 org.apache.felix.examples.eventlistener.Activator
Richard S. Hall02496082007-08-23 15:29:20 +000055 </Bundle-Activator>
56 <Private-Package>
57 org.apache.felix.examples.eventlistener.*
58 </Private-Package>
59 </instructions>
Alex Karasulu7760dda2006-03-07 04:51:43 +000060 </configuration>
61 </plugin>
62 </plugins>
63 </build>
64</project>