blob: c972e67df3e6c454f89c8ba8a6289ce18f47535f [file] [log] [blame]
Carsten Ziegeler4fec0962008-01-11 16:13:31 +00001<!--
2 Licensed to the Apache Software Foundation (ASF) under one
3 or more contributor license agreements. See the NOTICE file
4 distributed with this work for additional information
5 regarding copyright ownership. The ASF licenses this file
6 to you under the Apache License, Version 2.0 (the
7 "License"); you may not use this file except in compliance
8 with the License. You may obtain a copy of the License at
Carsten Ziegelerbf338dd2008-01-03 09:11:33 +00009
Carsten Ziegeler4fec0962008-01-11 16:13:31 +000010 http://www.apache.org/licenses/LICENSE-2.0
Carsten Ziegelerbf338dd2008-01-03 09:11:33 +000011
Carsten Ziegeler4fec0962008-01-11 16:13:31 +000012 Unless required by applicable law or agreed to in writing,
13 software distributed under the License is distributed on an
14 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 KIND, either express or implied. See the License for the
16 specific language governing permissions and limitations
17 under the License.
Carsten Ziegelerbf338dd2008-01-03 09:11:33 +000018-->
Carsten Ziegeler4fec0962008-01-11 16:13:31 +000019<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
Carsten Ziegelerbaad9d92010-02-03 07:04:11 +000020 <parent>
Karl Paulsb0a17162006-11-03 09:25:08 +000021 <groupId>org.apache.felix</groupId>
Carsten Ziegelerbaad9d92010-02-03 07:04:11 +000022 <artifactId>felix-parent</artifactId>
Carsten Ziegelerc712e0a2011-07-13 14:06:13 +000023 <version>2.1</version>
Carsten Ziegelerbaad9d92010-02-03 07:04:11 +000024 <relativePath>../../pom/pom.xml</relativePath>
25 </parent>
26 <modelVersion>4.0.0</modelVersion>
27 <packaging>bundle</packaging>
28 <name>Apache Felix EventAdmin</name>
29 <description>
30 This bundle provides an implementation of the OSGi R4 EventAdmin service.
31 </description>
Carsten Ziegeler2add5732012-10-01 06:35:04 +000032 <version>1.3.3-SNAPSHOT</version>
Carsten Ziegelerbaad9d92010-02-03 07:04:11 +000033 <artifactId>org.apache.felix.eventadmin</artifactId>
Carsten Ziegeler4d47f1e2010-08-27 07:38:17 +000034 <scm>
Carsten Ziegeler2add5732012-10-01 06:35:04 +000035 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/eventadmin/impl</connection>
36 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/eventadmin/impl</developerConnection>
37 <url>http://svn.apache.org/repos/asf/felix/eventadmin/impl</url>
Carsten Ziegeler4d47f1e2010-08-27 07:38:17 +000038 </scm>
Carsten Ziegelerbaad9d92010-02-03 07:04:11 +000039 <dependencies>
40 <dependency>
41 <groupId>org.osgi</groupId>
42 <artifactId>org.osgi.core</artifactId>
Carsten Ziegeler2a478ae2014-05-27 06:59:41 +000043 <version>5.0.0</version>
Carsten Ziegeler4adc5642011-03-07 09:24:40 +000044 <scope>provided</scope>
Carsten Ziegelerbaad9d92010-02-03 07:04:11 +000045 </dependency>
46 <dependency>
47 <groupId>org.osgi</groupId>
48 <artifactId>org.osgi.compendium</artifactId>
Carsten Ziegeler2a478ae2014-05-27 06:59:41 +000049 <version>5.0.0</version>
Carsten Ziegeler4adc5642011-03-07 09:24:40 +000050 <scope>provided</scope>
Carsten Ziegelerbaad9d92010-02-03 07:04:11 +000051 </dependency>
52 </dependencies>
53 <build>
Carsten Ziegeler515683d2010-08-25 17:16:18 +000054 <resources>
55 <resource>
56 <directory>${basedir}/src/main/resources</directory>
57 </resource>
Carsten Ziegeler515683d2010-08-25 17:16:18 +000058 </resources>
Carsten Ziegelerbaad9d92010-02-03 07:04:11 +000059 <plugins>
60 <plugin>
Carsten Ziegeler2a478ae2014-05-27 06:59:41 +000061 <groupId>org.apache.maven.plugins</groupId>
62 <artifactId>maven-compiler-plugin</artifactId>
63 <configuration>
64 <source>1.6</source>
65 <target>1.6</target>
66 </configuration>
67 </plugin>
68 <plugin>
Carsten Ziegelerbaad9d92010-02-03 07:04:11 +000069 <groupId>org.apache.felix</groupId>
70 <artifactId>maven-bundle-plugin</artifactId>
Carsten Ziegeler2a478ae2014-05-27 06:59:41 +000071 <version>2.4.0</version>
Carsten Ziegelerbaad9d92010-02-03 07:04:11 +000072 <extensions>true</extensions>
73 <configuration>
74 <instructions>
75 <Bundle-SymbolicName>
76 ${pom.artifactId}
77 </Bundle-SymbolicName>
78 <Bundle-Activator>
79 ${pom.artifactId}.impl.Activator
80 </Bundle-Activator>
81 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
82 <DynamicImport-Package>
Guillaume Nodeta58c8f72013-11-20 09:58:32 +000083 org.osgi.service.log;version="[1.3,2)"
Carsten Ziegelerbaad9d92010-02-03 07:04:11 +000084 </DynamicImport-Package>
Carsten Ziegeler828f51f2010-02-03 08:27:45 +000085 <Import-Package>
Carsten Ziegeler2a478ae2014-05-27 06:59:41 +000086 org.osgi.framework;version="[1.3,2)",
Carsten Ziegeler828f51f2010-02-03 08:27:45 +000087 <!--
88 Configuration Admin is optional and if it is
89 present, version 1.2 (from R4.0) is enough
90 -->
91 org.osgi.service.cm;version="[1.2,2)";resolution:=optional,
92
93 <!--
94 Metatype is optional and if it is
95 present, version 1.1 (from R4.1) is enough
96 -->
97 org.osgi.service.metatype;version="[1.1,2)";resolution:=optional,
98
Guillaume Nodeta58c8f72013-11-20 09:58:32 +000099 <!--
100 Optional import to back the dynamic import on org.osgi.service.log
101 -->
102 org.osgi.service.log;version="[1.3,2)";resolution:=optional,
103
Carsten Ziegeler828f51f2010-02-03 08:27:45 +0000104 <!-- default -->
105 *
106 </Import-Package>
Carsten Ziegeler07203992010-02-16 12:38:17 +0000107 <Export-Package>org.osgi.service.event</Export-Package>
Carsten Ziegelerbaad9d92010-02-03 07:04:11 +0000108 <Private-Package>org.apache.felix.eventadmin.impl.*</Private-Package>
Guillaume Nodet327e2552011-09-20 15:10:23 +0000109 <Import-Service>
110 org.osgi.service.event.EventHandler;availability:=optional;multiple:=true,
111 org.osgi.service.log.LogService;availability:=optional;multiple:=false,
112 org.osgi.service.log.LogReaderService;availability:=optional;multiple:=false
113 </Import-Service>
114 <Export-Service>
115 org.osgi.service.event.EventAdmin
116 </Export-Service>
Carsten Ziegelerbaad9d92010-02-03 07:04:11 +0000117 <Embed-Dependency>
Carsten Ziegeler2a478ae2014-05-27 06:59:41 +0000118 org.osgi.core;inline="org/osgi/util/tracker/*"
Carsten Ziegelerbaad9d92010-02-03 07:04:11 +0000119 </Embed-Dependency>
120 </instructions>
121 </configuration>
122 </plugin>
123 </plugins>
124 </build>
Karl Pauls13dcf8c2006-08-22 21:39:30 +0000125</project>