blob: 719a21c1da2aeba5c6a4aa0f0f2a3572cbafa386 [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-->
Karl Pauls52b15d62006-06-24 15:05:58 +000019<project>
20 <parent>
21 <groupId>org.apache.felix</groupId>
22 <artifactId>felix</artifactId>
Carsten Ziegelerbf338dd2008-01-03 09:11:33 +000023 <version>1.0.1</version>
Karl Pauls589e2b32007-07-11 18:29:29 +000024 <relativePath>../../pom/pom.xml</relativePath>
Karl Pauls52b15d62006-06-24 15:05:58 +000025 </parent>
26 <modelVersion>4.0.0</modelVersion>
Karl Pauls7d1df4b2006-11-03 13:08:31 +000027 <packaging>bundle</packaging>
Karl Pauls52b15d62006-06-24 15:05:58 +000028 <name>Apache Felix EventAdmin Bridge UserAdmin</name>
Karl Pauls0a3858c2007-07-13 22:03:31 +000029 <version>0.9.0-SNAPSHOT</version>
Karl Pauls52b15d62006-06-24 15:05:58 +000030 <artifactId>org.apache.felix.eventadmin.bridge.useradmin</artifactId>
Karl Pauls7d1df4b2006-11-03 13:08:31 +000031 <description>
32 This bundle provides a bridge between UserAdmin and EventAdmin events.
33 </description>
Karl Pauls52b15d62006-06-24 15:05:58 +000034 <dependencies>
35 <dependency>
36 <groupId>${pom.groupId}</groupId>
37 <artifactId>org.osgi.core</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000038 <version>1.1.0-SNAPSHOT</version>
Karl Pauls52b15d62006-06-24 15:05:58 +000039 </dependency>
40 <dependency>
41 <groupId>${pom.groupId}</groupId>
42 <artifactId>org.osgi.compendium</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000043 <version>0.9.0-SNAPSHOT</version>
Karl Pauls52b15d62006-06-24 15:05:58 +000044 </dependency>
45 </dependencies>
46 <build>
47 <plugins>
48 <plugin>
Karl Pauls7d1df4b2006-11-03 13:08:31 +000049 <groupId>org.apache.felix</groupId>
Richard S. Hall797bc982007-05-21 18:35:07 +000050 <artifactId>maven-bundle-plugin</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000051 <version>1.1.0-SNAPSHOT</version>
Karl Pauls52b15d62006-06-24 15:05:58 +000052 <extensions>true</extensions>
53 <configuration>
Karl Pauls7d1df4b2006-11-03 13:08:31 +000054 <instructions>
55 <Bundle-Activator>${pom.artifactId}.Activator</Bundle-Activator>
56 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
57 <Private-Package>${pom.artifactId}.*</Private-Package>
Karl Pauls7d1df4b2006-11-03 13:08:31 +000058 </instructions>
Karl Pauls52b15d62006-06-24 15:05:58 +000059 </configuration>
60 </plugin>
61 </plugins>
62 </build>
63</project>