blob: 0da0843e2bea810e980cf1b104f52f6db4c93333 [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-->
Carsten Ziegeler4fec0962008-01-11 16:13:31 +000020<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">
Felix Meschbergercb7c1e72007-04-11 18:27:12 +000021 <modelVersion>4.0.0</modelVersion>
22 <parent>
23 <groupId>org.apache.felix</groupId>
Felix Meschbergerb1495372009-06-12 11:19:46 +000024 <artifactId>felix-parent</artifactId>
25 <version>1.2.0</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>
Carsten Ziegeler24e09532008-09-08 07:56:51 +000036 <version>1.0.3-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>
Carsten Ziegelerc340ecf2008-01-28 07:21:59 +000046 <version>1.0.0</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>
Felix Meschbergercb7c1e72007-04-11 18:27:12 +000060 <extensions>true</extensions>
61 <configuration>
62 <instructions>
63 <Bundle-Category>osgi</Bundle-Category>
Felix Meschbergerdb0f6a12009-06-12 11:28:25 +000064 <Bundle-DocURL>
65 http://felix.apache.org/site/apache-felix-metatype-service.html
66 </Bundle-DocURL>
Felix Meschbergercb7c1e72007-04-11 18:27:12 +000067 <Export-Package>
Felix Meschbergerdb0f6a12009-06-12 11:28:25 +000068 org.apache.felix.metatype; version=${pom.version},
Felix Meschbergercb7c1e72007-04-11 18:27:12 +000069 org.osgi.service.metatype; version=1.1
70 </Export-Package>
71 <Private-Package>
72 org.apache.felix.metatype.internal,
Felix Meschbergerdb0f6a12009-06-12 11:28:25 +000073 org.apache.felix.metatype.internal.l10n
Felix Meschbergercb7c1e72007-04-11 18:27:12 +000074 </Private-Package>
75 <Bundle-Activator>
76 org.apache.felix.metatype.internal.Activator
77 </Bundle-Activator>
Felix Meschbergerdb0f6a12009-06-12 11:28:25 +000078 <Embed-Dependency>
79 kxml2
80 </Embed-Dependency>
Felix Meschbergercb7c1e72007-04-11 18:27:12 +000081 </instructions>
82 </configuration>
83 </plugin>
84 </plugins>
85 </build>
Felix Meschbergercb7c1e72007-04-11 18:27:12 +000086</project>