Carsten Ziegeler | 122a404 | 2007-07-30 12:57:54 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 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 | 2234ede | 2007-07-30 13:05:50 +0000 | [diff] [blame] | 20 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 21 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 22 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
Carsten Ziegeler | 122a404 | 2007-07-30 12:57:54 +0000 | [diff] [blame] | 23 | <modelVersion>4.0.0</modelVersion> |
Carsten Ziegeler | 2234ede | 2007-07-30 13:05:50 +0000 | [diff] [blame] | 24 | |
Carsten Ziegeler | 122a404 | 2007-07-30 12:57:54 +0000 | [diff] [blame] | 25 | <parent> |
| 26 | <groupId>org.apache.felix</groupId> |
| 27 | <artifactId>felix</artifactId> |
| 28 | <version>1.0.0</version> |
Carsten Ziegeler | 2234ede | 2007-07-30 13:05:50 +0000 | [diff] [blame] | 29 | <relativePath>../pom</relativePath> |
Carsten Ziegeler | 122a404 | 2007-07-30 12:57:54 +0000 | [diff] [blame] | 30 | </parent> |
| 31 | |
Carsten Ziegeler | 9e73ae8 | 2007-07-30 13:36:18 +0000 | [diff] [blame] | 32 | <artifactId>org.apache.felix.prefs</artifactId> |
Carsten Ziegeler | 122a404 | 2007-07-30 12:57:54 +0000 | [diff] [blame] | 33 | <packaging>bundle</packaging> |
| 34 | <version>0.1.0-SNAPSHOT</version> |
| 35 | |
| 36 | <name>Apache Felix Prefrences Service</name> |
| 37 | <description> |
| 38 | Implementation of the OSGi Preferences Service Specification 1.1 |
| 39 | </description> |
| 40 | |
| 41 | <dependencies> |
| 42 | <dependency> |
| 43 | <groupId>${pom.groupId}</groupId> |
| 44 | <artifactId>org.osgi.core</artifactId> |
| 45 | <version>1.0.0</version> |
| 46 | </dependency> |
| 47 | <dependency> |
| 48 | <groupId>${pom.groupId}</groupId> |
| 49 | <artifactId>org.osgi.compendium</artifactId> |
| 50 | <version>0.9.0-SNAPSHOT</version> |
| 51 | </dependency> |
| 52 | <dependency> |
| 53 | <groupId>commons-codec</groupId> |
| 54 | <artifactId>commons-codec</artifactId> |
| 55 | <version>1.3</version> |
| 56 | </dependency> |
| 57 | </dependencies> |
| 58 | |
| 59 | <build> |
| 60 | <plugins> |
| 61 | <plugin> |
| 62 | <groupId>org.apache.felix</groupId> |
| 63 | <artifactId>maven-bundle-plugin</artifactId> |
| 64 | <version>1.0.0</version> |
| 65 | <extensions>true</extensions> |
| 66 | <configuration> |
| 67 | <instructions> |
| 68 | <Bundle-Category>osgi</Bundle-Category> |
| 69 | <Export-Package> |
Carsten Ziegeler | 2234ede | 2007-07-30 13:05:50 +0000 | [diff] [blame] | 70 | org.apache.felix.prefs, |
Carsten Ziegeler | 122a404 | 2007-07-30 12:57:54 +0000 | [diff] [blame] | 71 | org.osgi.service.prefs;version=1.1 |
| 72 | </Export-Package> |
| 73 | <Private-Package> |
Carsten Ziegeler | 2234ede | 2007-07-30 13:05:50 +0000 | [diff] [blame] | 74 | org.apache.felix.prefs.*, |
Carsten Ziegeler | 122a404 | 2007-07-30 12:57:54 +0000 | [diff] [blame] | 75 | org.apache.commons.codec.binary.* |
| 76 | </Private-Package> |
| 77 | <Bundle-Activator> |
Carsten Ziegeler | 2234ede | 2007-07-30 13:05:50 +0000 | [diff] [blame] | 78 | org.apache.felix.prefs.impl.PreferencesManager |
Carsten Ziegeler | 122a404 | 2007-07-30 12:57:54 +0000 | [diff] [blame] | 79 | </Bundle-Activator> |
| 80 | </instructions> |
| 81 | </configuration> |
| 82 | </plugin> |
| 83 | </plugins> |
| 84 | </build> |
| 85 | </project> |