blob: 1c9f40d826d4b6ade44924414d7111accc78a854 [file] [log] [blame]
Carsten Ziegelerb61fe0e2008-01-03 09:24:12 +00001<!--
2 Licensed to the Apache Software Foundation (ASF) under one
3 or more contributor license agreements. See the NOTICE file
4 distributed with this work for additional information
5 regarding copyright ownership. The ASF licenses this file
6 to you under the Apache License, Version 2.0 (the
7 "License"); you may not use this file except in compliance
8 with the License. You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 Unless required by applicable law or agreed to in writing,
13 software distributed under the License is distributed on an
14 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 KIND, either express or implied. See the License for the
16 specific language governing permissions and limitations
17 under the License.
18-->
Carsten Ziegeler4fec0962008-01-11 16:13:31 +000019<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">
Karl Pauls589e2b32007-07-11 18:29:29 +000020 <parent>
21 <groupId>org.apache.felix</groupId>
Felix Meschbergera4ad70a2009-04-27 13:12:37 +000022 <artifactId>felix-parent</artifactId>
23 <version>1.2.0</version>
Karl Pauls589e2b32007-07-11 18:29:29 +000024 <relativePath>../pom/pom.xml</relativePath>
25 </parent>
26 <modelVersion>4.0.0</modelVersion>
27 <packaging>bundle</packaging>
28 <name>Apache Felix Declarative Services</name>
29 <description>
30 Implementation of the Declarative Services specification 1.0
31 </description>
32 <artifactId>org.apache.felix.scr</artifactId>
Carsten Ziegelera0313e52008-09-08 07:48:13 +000033 <version>1.0.7-SNAPSHOT</version>
Karl Pauls589e2b32007-07-11 18:29:29 +000034 <dependencies>
35 <dependency>
36 <groupId>${pom.groupId}</groupId>
37 <artifactId>org.osgi.core</artifactId>
Felix Meschberger644283d2007-08-22 15:28:05 +000038 <version>1.0.0</version>
Karl Pauls589e2b32007-07-11 18:29:29 +000039 </dependency>
40 <dependency>
41 <groupId>${pom.groupId}</groupId>
42 <artifactId>org.osgi.compendium</artifactId>
Carsten Ziegelerc340ecf2008-01-28 07:21:59 +000043 <version>1.0.0</version>
Karl Pauls589e2b32007-07-11 18:29:29 +000044 </dependency>
45 <dependency>
Felix Meschbergerd25a63d2007-11-23 13:02:49 +000046 <groupId>${pom.groupId}</groupId>
47 <artifactId>org.apache.felix.shell</artifactId>
48 <version>1.0.0</version>
49 </dependency>
50 <dependency>
Karl Pauls589e2b32007-07-11 18:29:29 +000051 <groupId>net.sf.kxml</groupId>
52 <artifactId>kxml2</artifactId>
53 <version>2.2.2</version>
54 </dependency>
55 </dependencies>
56 <build>
57 <plugins>
58 <plugin>
59 <groupId>org.apache.felix</groupId>
60 <artifactId>maven-bundle-plugin</artifactId>
Stuart McCulloch876ca722008-02-26 17:15:42 +000061 <version>1.4.0</version>
Karl Pauls589e2b32007-07-11 18:29:29 +000062 <extensions>true</extensions>
63 <configuration>
64 <instructions>
65 <Bundle-SymbolicName>
66 ${artifactId}
67 </Bundle-SymbolicName>
Carsten Ziegelercf6e51b2008-04-17 06:33:59 +000068 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
Karl Pauls589e2b32007-07-11 18:29:29 +000069 <Bundle-Activator>
Felix Meschbergerd25a63d2007-11-23 13:02:49 +000070 org.apache.felix.scr.impl.Activator
Karl Pauls589e2b32007-07-11 18:29:29 +000071 </Bundle-Activator>
72 <Export-Package>
Felix Meschbergerd25a63d2007-11-23 13:02:49 +000073 org.apache.felix.scr;version=${pom.version},
Felix Meschberger644283d2007-08-22 15:28:05 +000074 org.osgi.service.cm,
75 org.osgi.service.component
Karl Pauls589e2b32007-07-11 18:29:29 +000076 </Export-Package>
77 <Private-Package>
Felix Meschbergerd25a63d2007-11-23 13:02:49 +000078 org.apache.felix.scr.impl.*, org.kxml2.io,
Felix Meschberger269f4552008-01-15 12:23:24 +000079 org.osgi.util.tracker,
80 org.xmlpull.v1;-split-package:=merge-first
Karl Pauls589e2b32007-07-11 18:29:29 +000081 </Private-Package>
Felix Meschbergerd25a63d2007-11-23 13:02:49 +000082 <Import-Package>
83 org.apache.felix.shell;resolution:=optional,*
84 </Import-Package>
Karl Pauls589e2b32007-07-11 18:29:29 +000085 <DynamicImport-Package>
86 org.osgi.service.log
87 </DynamicImport-Package>
88 </instructions>
89 </configuration>
90 </plugin>
91 </plugins>
92 </build>
93</project>