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 | 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"> |
Carsten Ziegeler | 122a404 | 2007-07-30 12:57:54 +0000 | [diff] [blame] | 21 | <modelVersion>4.0.0</modelVersion> |
Carsten Ziegeler | 2234ede | 2007-07-30 13:05:50 +0000 | [diff] [blame] | 22 | |
Carsten Ziegeler | 122a404 | 2007-07-30 12:57:54 +0000 | [diff] [blame] | 23 | <parent> |
| 24 | <groupId>org.apache.felix</groupId> |
| 25 | <artifactId>felix</artifactId> |
Carsten Ziegeler | 646b9f1 | 2008-01-16 07:44:32 +0000 | [diff] [blame] | 26 | <version>1.0.2</version> |
Carsten Ziegeler | 2234ede | 2007-07-30 13:05:50 +0000 | [diff] [blame] | 27 | <relativePath>../pom</relativePath> |
Carsten Ziegeler | 122a404 | 2007-07-30 12:57:54 +0000 | [diff] [blame] | 28 | </parent> |
| 29 | |
Carsten Ziegeler | 9e73ae8 | 2007-07-30 13:36:18 +0000 | [diff] [blame] | 30 | <artifactId>org.apache.felix.prefs</artifactId> |
Carsten Ziegeler | 122a404 | 2007-07-30 12:57:54 +0000 | [diff] [blame] | 31 | <packaging>bundle</packaging> |
Carsten Ziegeler | 0a5f269 | 2008-02-04 12:33:43 +0000 | [diff] [blame] | 32 | <version>1.0.3-SNAPSHOT</version> |
Carsten Ziegeler | 122a404 | 2007-07-30 12:57:54 +0000 | [diff] [blame] | 33 | |
Carsten Ziegeler | 5bb25c3 | 2008-02-27 09:32:58 +0000 | [diff] [blame] | 34 | <name>Apache Felix Preferences Service</name> |
Carsten Ziegeler | 122a404 | 2007-07-30 12:57:54 +0000 | [diff] [blame] | 35 | <description> |
| 36 | Implementation of the OSGi Preferences Service Specification 1.1 |
| 37 | </description> |
| 38 | |
| 39 | <dependencies> |
| 40 | <dependency> |
| 41 | <groupId>${pom.groupId}</groupId> |
| 42 | <artifactId>org.osgi.core</artifactId> |
| 43 | <version>1.0.0</version> |
| 44 | </dependency> |
| 45 | <dependency> |
| 46 | <groupId>${pom.groupId}</groupId> |
| 47 | <artifactId>org.osgi.compendium</artifactId> |
Carsten Ziegeler | c340ecf | 2008-01-28 07:21:59 +0000 | [diff] [blame] | 48 | <version>1.0.0</version> |
Carsten Ziegeler | 122a404 | 2007-07-30 12:57:54 +0000 | [diff] [blame] | 49 | </dependency> |
| 50 | <dependency> |
| 51 | <groupId>commons-codec</groupId> |
| 52 | <artifactId>commons-codec</artifactId> |
| 53 | <version>1.3</version> |
| 54 | </dependency> |
| 55 | </dependencies> |
| 56 | |
| 57 | <build> |
| 58 | <plugins> |
| 59 | <plugin> |
| 60 | <groupId>org.apache.felix</groupId> |
| 61 | <artifactId>maven-bundle-plugin</artifactId> |
Stuart McCulloch | 876ca72 | 2008-02-26 17:15:42 +0000 | [diff] [blame] | 62 | <version>1.4.0</version> |
Carsten Ziegeler | 122a404 | 2007-07-30 12:57:54 +0000 | [diff] [blame] | 63 | <extensions>true</extensions> |
| 64 | <configuration> |
| 65 | <instructions> |
| 66 | <Bundle-Category>osgi</Bundle-Category> |
Carsten Ziegeler | 3653955 | 2007-09-17 14:24:30 +0000 | [diff] [blame] | 67 | <Bundle-SymbolicName> |
| 68 | ${artifactId} |
| 69 | </Bundle-SymbolicName> |
Carsten Ziegeler | cf6e51b | 2008-04-17 06:33:59 +0000 | [diff] [blame] | 70 | <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor> |
Carsten Ziegeler | 122a404 | 2007-07-30 12:57:54 +0000 | [diff] [blame] | 71 | <Export-Package> |
Carsten Ziegeler | 2234ede | 2007-07-30 13:05:50 +0000 | [diff] [blame] | 72 | org.apache.felix.prefs, |
Carsten Ziegeler | 122a404 | 2007-07-30 12:57:54 +0000 | [diff] [blame] | 73 | org.osgi.service.prefs;version=1.1 |
| 74 | </Export-Package> |
| 75 | <Private-Package> |
Carsten Ziegeler | 50161ac | 2007-12-28 15:22:45 +0000 | [diff] [blame] | 76 | org.apache.felix.prefs.impl, |
Stuart McCulloch | 81ac895 | 2008-01-31 03:57:00 +0000 | [diff] [blame] | 77 | org.apache.commons.codec, |
Carsten Ziegeler | 50161ac | 2007-12-28 15:22:45 +0000 | [diff] [blame] | 78 | org.apache.commons.codec.binary |
Carsten Ziegeler | 122a404 | 2007-07-30 12:57:54 +0000 | [diff] [blame] | 79 | </Private-Package> |
| 80 | <Bundle-Activator> |
Carsten Ziegeler | 2234ede | 2007-07-30 13:05:50 +0000 | [diff] [blame] | 81 | org.apache.felix.prefs.impl.PreferencesManager |
Carsten Ziegeler | 122a404 | 2007-07-30 12:57:54 +0000 | [diff] [blame] | 82 | </Bundle-Activator> |
| 83 | </instructions> |
| 84 | </configuration> |
| 85 | </plugin> |
| 86 | </plugins> |
| 87 | </build> |
Carsten Ziegeler | 122a404 | 2007-07-30 12:57:54 +0000 | [diff] [blame] | 88 | </project> |