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