Felix Meschberger | cb7c1e7 | 2007-04-11 18:27:12 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Carsten Ziegeler | b61fe0e | 2008-01-03 09:24:12 +0000 | [diff] [blame] | 2 | <!-- |
| 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 Ziegeler | 4fec096 | 2008-01-11 16:13:31 +0000 | [diff] [blame] | 20 | <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 Meschberger | cb7c1e7 | 2007-04-11 18:27:12 +0000 | [diff] [blame] | 21 | <modelVersion>4.0.0</modelVersion> |
| 22 | <parent> |
| 23 | <groupId>org.apache.felix</groupId> |
| 24 | <artifactId>felix</artifactId> |
Carsten Ziegeler | 646b9f1 | 2008-01-16 07:44:32 +0000 | [diff] [blame] | 25 | <version>1.0.2</version> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 26 | <relativePath>../pom/pom.xml</relativePath> |
Felix Meschberger | cb7c1e7 | 2007-04-11 18:27:12 +0000 | [diff] [blame] | 27 | </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 Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 36 | <version>0.9.0-SNAPSHOT</version> |
Felix Meschberger | cb7c1e7 | 2007-04-11 18:27:12 +0000 | [diff] [blame] | 37 | <dependencies> |
| 38 | <dependency> |
| 39 | <groupId>${pom.groupId}</groupId> |
| 40 | <artifactId>org.osgi.core</artifactId> |
Felix Meschberger | 7dd7093 | 2007-09-04 13:06:43 +0000 | [diff] [blame] | 41 | <version>1.0.0</version> |
Felix Meschberger | cb7c1e7 | 2007-04-11 18:27:12 +0000 | [diff] [blame] | 42 | </dependency> |
| 43 | <dependency> |
| 44 | <groupId>${pom.groupId}</groupId> |
| 45 | <artifactId>org.osgi.compendium</artifactId> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 46 | <version>0.9.0-SNAPSHOT</version> |
Felix Meschberger | cb7c1e7 | 2007-04-11 18:27:12 +0000 | [diff] [blame] | 47 | </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. Hall | 797bc98 | 2007-05-21 18:35:07 +0000 | [diff] [blame] | 59 | <artifactId>maven-bundle-plugin</artifactId> |
Carsten Ziegeler | 78bcc77 | 2008-01-22 07:41:16 +0000 | [diff] [blame] | 60 | <version>1.2.0</version> |
Felix Meschberger | cb7c1e7 | 2007-04-11 18:27:12 +0000 | [diff] [blame] | 61 | <extensions>true</extensions> |
| 62 | <configuration> |
| 63 | <instructions> |
| 64 | <Bundle-Category>osgi</Bundle-Category> |
Felix Meschberger | 8044a30 | 2007-09-04 13:32:05 +0000 | [diff] [blame] | 65 | <Bundle-SymbolicName> |
| 66 | ${artifactId} |
| 67 | </Bundle-SymbolicName> |
Felix Meschberger | cb7c1e7 | 2007-04-11 18:27:12 +0000 | [diff] [blame] | 68 | <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> |