blob: a5b3177e3a654d7355ef5709c6381e10eb0ae777 [file] [log] [blame]
Guillaume Nodet05fac962009-04-27 10:01:58 +00001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 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>
Guillaume Nodete692a962009-08-07 09:55:51 +000025 <groupId>org.apache.felix.karaf.features</groupId>
26 <artifactId>features</artifactId>
Guillaume Nodetadc9d282009-08-25 09:03:55 +000027 <version>0.9.0-SNAPSHOT</version>
Guillaume Nodet05fac962009-04-27 10:01:58 +000028 </parent>
29
Guillaume Nodete692a962009-08-07 09:55:51 +000030 <groupId>org.apache.felix.karaf.features</groupId>
31 <artifactId>org.apache.felix.karaf.features.management</artifactId>
Guillaume Nodet05fac962009-04-27 10:01:58 +000032 <packaging>bundle</packaging>
Guillaume Nodetadc9d282009-08-25 09:03:55 +000033 <version>0.9.0-SNAPSHOT</version>
Guillaume Nodete692a962009-08-07 09:55:51 +000034 <name>Apache Felix Karaf :: Features Management</name>
Guillaume Nodet05fac962009-04-27 10:01:58 +000035
Guillaume Nodete73545e2009-09-18 20:25:06 +000036 <properties>
37 <appendedResourcesDirectory>${basedir}/../../etc/appended-resources</appendedResourcesDirectory>
38 </properties>
39
Guillaume Nodet05fac962009-04-27 10:01:58 +000040 <dependencies>
41 <dependency>
42 <groupId>org.apache.felix</groupId>
43 <artifactId>org.osgi.core</artifactId>
44 <scope>provided</scope>
45 </dependency>
46
47 <dependency>
48 <groupId>org.apache.felix</groupId>
49 <artifactId>org.osgi.compendium</artifactId>
50 <scope>provided</scope>
51 </dependency>
52
53 <dependency>
Guillaume Nodete692a962009-08-07 09:55:51 +000054 <groupId>org.apache.felix.karaf.features</groupId>
55 <artifactId>org.apache.felix.karaf.features.core</artifactId>
56 </dependency>
57
58 <dependency>
Guillaume Nodet05fac962009-04-27 10:01:58 +000059 <groupId>org.apache.felix</groupId>
60 <artifactId>org.apache.felix.bundlerepository</artifactId>
61 </dependency>
62
63 <dependency>
Guillaume Nodet23a0f3d2009-09-18 20:14:54 +000064 <groupId>org.apache.felix.karaf.shell</groupId>
65 <artifactId>org.apache.felix.karaf.shell.console</artifactId>
Guillaume Nodet05fac962009-04-27 10:01:58 +000066 </dependency>
67
68 <dependency>
Guillaume Nodet23a0f3d2009-09-18 20:14:54 +000069 <groupId>org.apache.felix.karaf.shell</groupId>
70 <artifactId>org.apache.felix.karaf.shell.obr</artifactId>
Guillaume Nodet05fac962009-04-27 10:01:58 +000071 </dependency>
72
73 <dependency>
Guillaume Nodet05fac962009-04-27 10:01:58 +000074 <groupId>org.springframework.osgi</groupId>
75 <artifactId>spring-osgi-core</artifactId>
Guillaume Nodet129433d2009-07-09 08:29:14 +000076 <scope>test</scope>
Guillaume Nodet05fac962009-04-27 10:01:58 +000077 </dependency>
Guillaume Nodet05fac962009-04-27 10:01:58 +000078 <dependency>
79 <groupId>org.apache.servicemix.bundles</groupId>
80 <artifactId>org.apache.servicemix.bundles.junit</artifactId>
81 <scope>test</scope>
82 </dependency>
83 <dependency>
84 <groupId>org.easymock</groupId>
85 <artifactId>easymock</artifactId>
86 <scope>test</scope>
87 </dependency>
Guillaume Nodet129433d2009-07-09 08:29:14 +000088 <dependency>
89 <groupId>org.slf4j</groupId>
90 <artifactId>slf4j-jdk14</artifactId>
91 <scope>test</scope>
92 </dependency>
Guillaume Nodet05fac962009-04-27 10:01:58 +000093 </dependencies>
94
95 <build>
96 <plugins>
97 <plugin>
98 <groupId>org.apache.felix</groupId>
99 <artifactId>maven-bundle-plugin</artifactId>
100 <configuration>
101 <instructions>
Guillaume Nodete73545e2009-09-18 20:25:06 +0000102 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
Guillaume Nodete692a962009-08-07 09:55:51 +0000103 <Export-Package>
Guillaume Nodete73545e2009-09-18 20:25:06 +0000104 ${pom.artifactId}*;version=${pom.version}
Guillaume Nodete692a962009-08-07 09:55:51 +0000105 </Export-Package>
Guillaume Nodet05fac962009-04-27 10:01:58 +0000106 <Import-Package>
Guillaume Nodete73545e2009-09-18 20:25:06 +0000107 !${pom.artifactId}*,
Guillaume Nodet6b2946d2009-06-18 20:57:23 +0000108 javax.management,
109 javax.management.loading,
Guillaume Nodet129433d2009-07-09 08:29:14 +0000110 org.osgi.service.command,
111 org.apache.felix.gogo.commands,
Guillaume Nodet23a0f3d2009-09-18 20:14:54 +0000112 org.apache.felix.karaf.shell.console,
Guillaume Nodet05fac962009-04-27 10:01:58 +0000113 *
114 </Import-Package>
Guillaume Nodete692a962009-08-07 09:55:51 +0000115 <Private-Package>org.apache.felix.karaf.features.management.internal</Private-Package>
Guillaume Nodet4e32cd62009-05-04 16:30:02 +0000116 <_versionpolicy>${bnd.version.policy}</_versionpolicy>
Guillaume Nodet05fac962009-04-27 10:01:58 +0000117 </instructions>
118 </configuration>
119 </plugin>
120 </plugins>
121 </build>
Gert Vanthienenf54a8392009-05-02 19:57:13 +0000122</project>