blob: f491e69987d42efbf384deaf9c91e7c00cf25048 [file] [log] [blame]
Gert Vanthienene7983962010-03-04 12:19:22 +00001<?xml version="1.0" encoding="UTF-8"?>
2<project xmlns="http://maven.apache.org/POM/4.0.0"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5
6 <!--
7
8 Licensed to the Apache Software Foundation (ASF) under one or more
9 contributor license agreements. See the NOTICE file distributed with
10 this work for additional information regarding copyright ownership.
11 The ASF licenses this file to You under the Apache License, Version 2.0
12 (the "License"); you may not use this file except in compliance with
13 the License. You may obtain a copy of the License at
14
15 http://www.apache.org/licenses/LICENSE-2.0
16
17 Unless required by applicable law or agreed to in writing, software
18 distributed under the License is distributed on an "AS IS" BASIS,
19 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20 See the License for the specific language governing permissions and
21 limitations under the License.
22 -->
23
24 <modelVersion>4.0.0</modelVersion>
25
26 <parent>
27 <artifactId>karaf</artifactId>
28 <groupId>org.apache.felix.karaf</groupId>
29 <version>1.5.0-SNAPSHOT</version>
30 </parent>
31
32 <groupId>org.apache.felix.karaf</groupId>
33 <artifactId>org.apache.felix.karaf.commons</artifactId>
34 <version>1.5.0-SNAPSHOT</version>
35 <packaging>bundle</packaging>
36 <name>Apache Felix Karaf :: Commons</name>
37
38 <properties>
39 <appendedResourcesDirectory>${basedir}/../etc/appended-resources</appendedResourcesDirectory>
40 </properties>
41
42 <dependencies>
43 <dependency>
44 <groupId>org.apache.felix</groupId>
45 <artifactId>org.osgi.core</artifactId>
46 <scope>provided</scope>
47 </dependency>
48 </dependencies>
49
50 <build>
51 <plugins>
52 <plugin>
53 <groupId>org.apache.felix</groupId>
54 <artifactId>maven-bundle-plugin</artifactId>
55 <configuration>
56 <instructions>
57 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
58 <Export-Package>${pom.artifactId}*;version=${project.version}</Export-Package>
59 <Import-Package>
60 !${pom.artifactId}*,
61 *
62 </Import-Package>
63 <_versionpolicy>${bnd.version.policy}</_versionpolicy>
64 </instructions>
65 </configuration>
66 </plugin>
67 </plugins>
68 </build>
69
70</project>