blob: e6b17c519529936d173dd5bd11ea9ded0a4b7f77 [file] [log] [blame]
Carsten Ziegeler122a4042007-07-30 12:57:54 +00001<?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 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">
Carsten Ziegeler122a4042007-07-30 12:57:54 +000021 <modelVersion>4.0.0</modelVersion>
Carsten Ziegeler2234ede2007-07-30 13:05:50 +000022
Carsten Ziegeler122a4042007-07-30 12:57:54 +000023 <parent>
24 <groupId>org.apache.felix</groupId>
25 <artifactId>felix</artifactId>
Carsten Ziegeler646b9f12008-01-16 07:44:32 +000026 <version>1.0.2</version>
Carsten Ziegeler2234ede2007-07-30 13:05:50 +000027 <relativePath>../pom</relativePath>
Carsten Ziegeler122a4042007-07-30 12:57:54 +000028 </parent>
29
Carsten Ziegeler9e73ae82007-07-30 13:36:18 +000030 <artifactId>org.apache.felix.prefs</artifactId>
Carsten Ziegeler122a4042007-07-30 12:57:54 +000031 <packaging>bundle</packaging>
Carsten Ziegeler0a5f2692008-02-04 12:33:43 +000032 <version>1.0.3-SNAPSHOT</version>
Carsten Ziegeler122a4042007-07-30 12:57:54 +000033
Carsten Ziegeler5bb25c32008-02-27 09:32:58 +000034 <name>Apache Felix Preferences Service</name>
Carsten Ziegeler122a4042007-07-30 12:57:54 +000035 <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 Ziegelerc340ecf2008-01-28 07:21:59 +000048 <version>1.0.0</version>
Carsten Ziegeler122a4042007-07-30 12:57:54 +000049 </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 McCulloch876ca722008-02-26 17:15:42 +000062 <version>1.4.0</version>
Carsten Ziegeler122a4042007-07-30 12:57:54 +000063 <extensions>true</extensions>
64 <configuration>
65 <instructions>
66 <Bundle-Category>osgi</Bundle-Category>
Carsten Ziegeler36539552007-09-17 14:24:30 +000067 <Bundle-SymbolicName>
68 ${artifactId}
69 </Bundle-SymbolicName>
Carsten Ziegelercf6e51b2008-04-17 06:33:59 +000070 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
Carsten Ziegeler122a4042007-07-30 12:57:54 +000071 <Export-Package>
Carsten Ziegeler2234ede2007-07-30 13:05:50 +000072 org.apache.felix.prefs,
Carsten Ziegeler122a4042007-07-30 12:57:54 +000073 org.osgi.service.prefs;version=1.1
74 </Export-Package>
75 <Private-Package>
Carsten Ziegeler50161ac2007-12-28 15:22:45 +000076 org.apache.felix.prefs.impl,
Stuart McCulloch81ac8952008-01-31 03:57:00 +000077 org.apache.commons.codec,
Carsten Ziegeler50161ac2007-12-28 15:22:45 +000078 org.apache.commons.codec.binary
Carsten Ziegeler122a4042007-07-30 12:57:54 +000079 </Private-Package>
80 <Bundle-Activator>
Carsten Ziegeler2234ede2007-07-30 13:05:50 +000081 org.apache.felix.prefs.impl.PreferencesManager
Carsten Ziegeler122a4042007-07-30 12:57:54 +000082 </Bundle-Activator>
83 </instructions>
84 </configuration>
85 </plugin>
86 </plugins>
87 </build>
Carsten Ziegeler122a4042007-07-30 12:57:54 +000088</project>