blob: 96734d197780c2313652defe03d73230efc2ec57 [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>
32 <version>0.1.0-SNAPSHOT</version>
33
34 <name>Apache Felix Prefrences Service</name>
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>
48 <version>0.9.0-SNAPSHOT</version>
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>
Carsten Ziegeler78bcc772008-01-22 07:41:16 +000062 <version>1.2.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 Ziegeler122a4042007-07-30 12:57:54 +000070 <Export-Package>
Carsten Ziegeler2234ede2007-07-30 13:05:50 +000071 org.apache.felix.prefs,
Carsten Ziegeler122a4042007-07-30 12:57:54 +000072 org.osgi.service.prefs;version=1.1
73 </Export-Package>
74 <Private-Package>
Carsten Ziegeler50161ac2007-12-28 15:22:45 +000075 org.apache.felix.prefs.impl,
76 org.apache.commons.codec.binary
Carsten Ziegeler122a4042007-07-30 12:57:54 +000077 </Private-Package>
78 <Bundle-Activator>
Carsten Ziegeler2234ede2007-07-30 13:05:50 +000079 org.apache.felix.prefs.impl.PreferencesManager
Carsten Ziegeler122a4042007-07-30 12:57:54 +000080 </Bundle-Activator>
81 </instructions>
82 </configuration>
83 </plugin>
84 </plugins>
85 </build>
86</project>