blob: 84c895d9dc9b0e4b119639547b27628202a5a52d [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>
22 <artifactId>felix</artifactId>
Carsten Ziegeler38927d02008-01-07 16:18:55 +000023 <version>1.0.2-SNAPSHOT</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>
Karl Pauls0a3858c2007-07-13 22:03:31 +000033 <version>0.9.0-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>
Karl Pauls0a3858c2007-07-13 22:03:31 +000043 <version>0.9.0-SNAPSHOT</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 McCulloch871e7db2007-12-20 17:03:43 +000061 <version>1.1.0-SNAPSHOT</version>
Karl Pauls589e2b32007-07-11 18:29:29 +000062 <extensions>true</extensions>
63 <configuration>
64 <instructions>
65 <Bundle-SymbolicName>
66 ${artifactId}
67 </Bundle-SymbolicName>
68 <Bundle-Vendor>
69 Apache Software Foundation
70 </Bundle-Vendor>
71 <Bundle-Activator>
Felix Meschbergerd25a63d2007-11-23 13:02:49 +000072 org.apache.felix.scr.impl.Activator
Karl Pauls589e2b32007-07-11 18:29:29 +000073 </Bundle-Activator>
74 <Export-Package>
Felix Meschbergerd25a63d2007-11-23 13:02:49 +000075 org.apache.felix.scr;version=${pom.version},
Felix Meschberger644283d2007-08-22 15:28:05 +000076 org.osgi.service.cm,
77 org.osgi.service.component
Karl Pauls589e2b32007-07-11 18:29:29 +000078 </Export-Package>
79 <Private-Package>
Felix Meschbergerd25a63d2007-11-23 13:02:49 +000080 org.apache.felix.scr.impl.*, org.kxml2.io,
Felix Meschberger644283d2007-08-22 15:28:05 +000081 org.osgi.util.tracker, org.xmlpull.v1
Karl Pauls589e2b32007-07-11 18:29:29 +000082 </Private-Package>
Felix Meschbergerd25a63d2007-11-23 13:02:49 +000083 <Import-Package>
84 org.apache.felix.shell;resolution:=optional,*
85 </Import-Package>
Karl Pauls589e2b32007-07-11 18:29:29 +000086 <DynamicImport-Package>
87 org.osgi.service.log
88 </DynamicImport-Package>
89 </instructions>
90 </configuration>
91 </plugin>
92 </plugins>
93 </build>
94</project>