blob: 6c13f243144f209315bcfdbbf2a46d16adc03b29 [file] [log] [blame]
Guillaume Nodet91fab3b2009-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 Nodet2cb94d02009-08-07 09:55:51 +000025 <groupId>org.apache.felix.karaf.features</groupId>
26 <artifactId>features</artifactId>
Guillaume Nodetabe56002009-08-25 09:03:55 +000027 <version>0.9.0-SNAPSHOT</version>
Guillaume Nodet91fab3b2009-04-27 10:01:58 +000028 </parent>
29
Guillaume Nodet2cb94d02009-08-07 09:55:51 +000030 <groupId>org.apache.felix.karaf.features</groupId>
31 <artifactId>org.apache.felix.karaf.features.core</artifactId>
Guillaume Nodet91fab3b2009-04-27 10:01:58 +000032 <packaging>bundle</packaging>
Guillaume Nodetabe56002009-08-25 09:03:55 +000033 <version>0.9.0-SNAPSHOT</version>
Guillaume Nodet2cb94d02009-08-07 09:55:51 +000034 <name>Apache Felix Karaf :: Features Core</name>
Guillaume Nodet91fab3b2009-04-27 10:01:58 +000035
36 <dependencies>
37 <dependency>
38 <groupId>org.apache.felix</groupId>
39 <artifactId>org.osgi.core</artifactId>
40 <scope>provided</scope>
41 </dependency>
42
43 <dependency>
44 <groupId>org.apache.felix</groupId>
45 <artifactId>org.osgi.compendium</artifactId>
46 <scope>provided</scope>
47 </dependency>
48
49 <dependency>
50 <groupId>org.apache.felix</groupId>
51 <artifactId>org.apache.felix.bundlerepository</artifactId>
52 </dependency>
53
54 <dependency>
Gert Vanthienen607b8522009-05-02 19:57:13 +000055 <groupId>org.apache.felix.karaf.gshell</groupId>
Guillaume Nodet077bac52009-07-09 08:29:14 +000056 <artifactId>org.apache.felix.karaf.gshell.console</artifactId>
Guillaume Nodet91fab3b2009-04-27 10:01:58 +000057 </dependency>
58
59 <dependency>
Gert Vanthienen607b8522009-05-02 19:57:13 +000060 <groupId>org.apache.felix.karaf.gshell</groupId>
61 <artifactId>org.apache.felix.karaf.gshell.obr</artifactId>
Guillaume Nodet91fab3b2009-04-27 10:01:58 +000062 </dependency>
63
64 <dependency>
Guillaume Nodet91fab3b2009-04-27 10:01:58 +000065 <groupId>org.springframework.osgi</groupId>
66 <artifactId>spring-osgi-core</artifactId>
Guillaume Nodet077bac52009-07-09 08:29:14 +000067 <scope>test</scope>
Guillaume Nodet91fab3b2009-04-27 10:01:58 +000068 </dependency>
Guillaume Nodet91fab3b2009-04-27 10:01:58 +000069 <dependency>
70 <groupId>org.apache.servicemix.bundles</groupId>
71 <artifactId>org.apache.servicemix.bundles.junit</artifactId>
72 <scope>test</scope>
73 </dependency>
74 <dependency>
75 <groupId>org.easymock</groupId>
76 <artifactId>easymock</artifactId>
77 <scope>test</scope>
78 </dependency>
Guillaume Nodet077bac52009-07-09 08:29:14 +000079 <dependency>
80 <groupId>org.slf4j</groupId>
81 <artifactId>slf4j-jdk14</artifactId>
82 <scope>test</scope>
83 </dependency>
Guillaume Nodet91fab3b2009-04-27 10:01:58 +000084 </dependencies>
85
86 <build>
87 <plugins>
88 <plugin>
89 <groupId>org.apache.felix</groupId>
90 <artifactId>maven-bundle-plugin</artifactId>
91 <configuration>
92 <instructions>
93 <Bundle-SymbolicName>${artifactId}</Bundle-SymbolicName>
Guillaume Nodet2cb94d02009-08-07 09:55:51 +000094 <Export-Package>org.apache.felix.karaf.features;version=${project.version}</Export-Package>
Guillaume Nodet91fab3b2009-04-27 10:01:58 +000095 <Import-Package>
Guillaume Nodetfcf2d342009-06-18 20:57:23 +000096 javax.management,
97 javax.management.loading,
Guillaume Nodet077bac52009-07-09 08:29:14 +000098 org.osgi.service.command,
99 org.apache.felix.gogo.commands,
100 org.apache.felix.karaf.gshell.console,
Guillaume Nodet91fab3b2009-04-27 10:01:58 +0000101 *
102 </Import-Package>
Guillaume Nodet2cb94d02009-08-07 09:55:51 +0000103 <Private-Package>org.apache.felix.karaf.features.internal</Private-Package>
Guillaume Nodet3e9a4282009-05-04 16:30:02 +0000104 <_versionpolicy>${bnd.version.policy}</_versionpolicy>
Guillaume Nodet91fab3b2009-04-27 10:01:58 +0000105 </instructions>
106 </configuration>
107 </plugin>
108 </plugins>
109 </build>
Gert Vanthienen607b8522009-05-02 19:57:13 +0000110</project>