blob: ae53e77b00cce7327c277fe7345fe41244494eeb [file] [log] [blame]
Felix Meschbergercb7c1e72007-04-11 18:27:12 +00001<?xml version="1.0" encoding="UTF-8"?>
Carsten Ziegelerb61fe0e2008-01-03 09:24:12 +00002<!--
3 Licensed to the Apache Software Foundation (ASF) under one
4 or more contributor license agreements. See the NOTICE file
5 distributed with this work for additional information
6 regarding copyright ownership. The ASF licenses this file
7 to you under the Apache License, Version 2.0 (the
8 "License"); you may not use this file except in compliance
9 with the License. You may obtain a copy of the License at
10
11 http://www.apache.org/licenses/LICENSE-2.0
12
13 Unless required by applicable law or agreed to in writing,
14 software distributed under the License is distributed on an
15 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 KIND, either express or implied. See the License for the
17 specific language governing permissions and limitations
18 under the License.
19-->
Felix Meschbergercb7c1e72007-04-11 18:27:12 +000020<project>
21 <modelVersion>4.0.0</modelVersion>
22 <parent>
23 <groupId>org.apache.felix</groupId>
24 <artifactId>felix</artifactId>
Carsten Ziegelerb61fe0e2008-01-03 09:24:12 +000025 <version>1.0.1</version>
Karl Pauls589e2b32007-07-11 18:29:29 +000026 <relativePath>../pom/pom.xml</relativePath>
Felix Meschbergercb7c1e72007-04-11 18:27:12 +000027 </parent>
28
29 <artifactId>org.apache.felix.metatype</artifactId>
30 <packaging>bundle</packaging>
31
32 <name>Apache Felix Metatype Service</name>
33 <description>
34 Implementation of the OSGi Metatype Service Specification 1.1
35 </description>
Karl Pauls0a3858c2007-07-13 22:03:31 +000036 <version>0.9.0-SNAPSHOT</version>
Felix Meschbergercb7c1e72007-04-11 18:27:12 +000037 <dependencies>
38 <dependency>
39 <groupId>${pom.groupId}</groupId>
40 <artifactId>org.osgi.core</artifactId>
Felix Meschberger7dd70932007-09-04 13:06:43 +000041 <version>1.0.0</version>
Felix Meschbergercb7c1e72007-04-11 18:27:12 +000042 </dependency>
43 <dependency>
44 <groupId>${pom.groupId}</groupId>
45 <artifactId>org.osgi.compendium</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000046 <version>0.9.0-SNAPSHOT</version>
Felix Meschbergercb7c1e72007-04-11 18:27:12 +000047 </dependency>
48 <dependency>
49 <groupId>net.sf.kxml</groupId>
50 <artifactId>kxml2</artifactId>
51 <version>2.2.2</version>
52 </dependency>
53 </dependencies>
54
55 <build>
56 <plugins>
57 <plugin>
58 <groupId>org.apache.felix</groupId>
Richard S. Hall797bc982007-05-21 18:35:07 +000059 <artifactId>maven-bundle-plugin</artifactId>
Stuart McCulloch871e7db2007-12-20 17:03:43 +000060 <version>1.1.0-SNAPSHOT</version>
Felix Meschbergercb7c1e72007-04-11 18:27:12 +000061 <extensions>true</extensions>
62 <configuration>
63 <instructions>
64 <Bundle-Category>osgi</Bundle-Category>
Felix Meschberger8044a302007-09-04 13:32:05 +000065 <Bundle-SymbolicName>
66 ${artifactId}
67 </Bundle-SymbolicName>
Felix Meschbergercb7c1e72007-04-11 18:27:12 +000068 <Export-Package>
69 org.apache.felix.metatype,
70 org.osgi.service.metatype; version=1.1
71 </Export-Package>
72 <Private-Package>
73 org.apache.felix.metatype.internal,
74 org.apache.felix.metatype.internal.l10n,
75 org.kxml2.io,
76 org.xmlpull.v1
77 </Private-Package>
78 <Bundle-Activator>
79 org.apache.felix.metatype.internal.Activator
80 </Bundle-Activator>
81 </instructions>
82 </configuration>
83 </plugin>
84 </plugins>
85 </build>
86</project>