blob: 5c62e9946af11a9ffb398828a63c9c674ee831ed [file] [log] [blame]
Guillaume Nodet91fab3b2009-04-27 10:01:58 +00001<?xml version="1.0" encoding="UTF-8"?>
2<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">
3
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>
Gert Vanthienen607b8522009-05-02 19:57:13 +000025 <groupId>org.apache.felix.karaf</groupId>
Freeman Yue Fang3eb6d292009-05-14 06:16:32 +000026 <artifactId>karaf</artifactId>
Guillaume Nodet3107d112010-05-20 20:08:17 +000027 <version>1.7.0-SNAPSHOT</version>
Guillaume Nodet91fab3b2009-04-27 10:01:58 +000028 </parent>
29
Gert Vanthienen607b8522009-05-02 19:57:13 +000030 <groupId>org.apache.felix.karaf</groupId>
31 <artifactId>org.apache.felix.karaf.management</artifactId>
Guillaume Nodet91fab3b2009-04-27 10:01:58 +000032 <packaging>bundle</packaging>
Guillaume Nodet3107d112010-05-20 20:08:17 +000033 <version>1.7.0-SNAPSHOT</version>
Gert Vanthienen607b8522009-05-02 19:57:13 +000034 <name>Apache Felix Karaf :: Management</name>
Guillaume Nodet91fab3b2009-04-27 10:01:58 +000035
Guillaume Nodet91a52c02009-09-18 20:14:54 +000036 <properties>
37 <appendedResourcesDirectory>${basedir}/../etc/appended-resources</appendedResourcesDirectory>
38 </properties>
39
Guillaume Nodet91fab3b2009-04-27 10:01:58 +000040 <dependencies>
41 <dependency>
Guillaume Nodet91fab3b2009-04-27 10:01:58 +000042 <groupId>org.apache.felix</groupId>
43 <artifactId>org.osgi.core</artifactId>
44 <scope>provided</scope>
45 </dependency>
46 <dependency>
47 <groupId>org.apache.felix</groupId>
48 <artifactId>org.osgi.compendium</artifactId>
49 <scope>provided</scope>
50 </dependency>
51 <dependency>
52 <groupId>org.apache.servicemix.bundles</groupId>
53 <artifactId>org.apache.servicemix.bundles.junit</artifactId>
54 <scope>test</scope>
55 </dependency>
56 <dependency>
57 <groupId>commons-logging</groupId>
58 <artifactId>commons-logging</artifactId>
59 <scope>test</scope>
60 </dependency>
Guillaume Nodete2627422010-06-08 16:05:24 +000061 <dependency>
62 <groupId>org.easymock</groupId>
63 <artifactId>easymock</artifactId>
64 <scope>test</scope>
65 </dependency>
66 <dependency>
67 <groupId>org.easymock</groupId>
68 <artifactId>easymockclassextension</artifactId>
69 <version>${easymock.version}</version>
70 <scope>test</scope>
71 </dependency>
Guillaume Nodet91fab3b2009-04-27 10:01:58 +000072 </dependencies>
73
74 <build>
75 <plugins>
76 <plugin>
77 <groupId>org.apache.felix</groupId>
78 <artifactId>maven-bundle-plugin</artifactId>
79 <configuration>
80 <instructions>
Chris Custine8764d8f2010-05-16 08:24:14 +000081 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
Guillaume Nodet91fab3b2009-04-27 10:01:58 +000082 <Import-Package>
Chris Custine8764d8f2010-05-16 08:24:14 +000083 !${project.artifactId}*,
Guillaume Nodet91fab3b2009-04-27 10:01:58 +000084 javax.management,
Guillaume Nodet91fab3b2009-04-27 10:01:58 +000085 *
86 </Import-Package>
Chris Custine8764d8f2010-05-16 08:24:14 +000087 <Export-Package>${project.artifactId}*;version=${project.version}</Export-Package>
Guillaume Nodet3e9a4282009-05-04 16:30:02 +000088 <_versionpolicy>${bnd.version.policy}</_versionpolicy>
Guillaume Nodet91fab3b2009-04-27 10:01:58 +000089 </instructions>
90 </configuration>
91 </plugin>
92 </plugins>
93 </build>
94
95
96</project>