blob: 8a0773b67f0094c419697eab0f148d6945b05687 [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>
Carsten Ziegeler21004af2009-06-23 07:09:19 +000025 <artifactId>felix-parent</artifactId>
26 <version>1.2.0</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>
Sanjeeb Kumar Sahoo6cbe06c2013-08-08 10:19:14 +000032 <version>1.0.7-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>
Carsten Ziegeler21004af2009-06-23 07:09:19 +000041 <groupId>org.apache.felix</groupId>
Carsten Ziegeler122a4042007-07-30 12:57:54 +000042 <artifactId>org.osgi.core</artifactId>
Carsten Ziegeler21004af2009-06-23 07:09:19 +000043 <version>1.2.0</version>
44 <scope>provided</scope>
Carsten Ziegeler122a4042007-07-30 12:57:54 +000045 </dependency>
46 <dependency>
Carsten Ziegeler21004af2009-06-23 07:09:19 +000047 <groupId>org.apache.felix</groupId>
Carsten Ziegeler122a4042007-07-30 12:57:54 +000048 <artifactId>org.osgi.compendium</artifactId>
Carsten Ziegeler21004af2009-06-23 07:09:19 +000049 <version>1.2.0</version>
Carsten Ziegeler122a4042007-07-30 12:57:54 +000050 </dependency>
51 <dependency>
52 <groupId>commons-codec</groupId>
53 <artifactId>commons-codec</artifactId>
54 <version>1.3</version>
55 </dependency>
56 </dependencies>
57
58 <build>
59 <plugins>
60 <plugin>
61 <groupId>org.apache.felix</groupId>
62 <artifactId>maven-bundle-plugin</artifactId>
Stuart McCulloch876ca722008-02-26 17:15:42 +000063 <version>1.4.0</version>
Carsten Ziegeler122a4042007-07-30 12:57:54 +000064 <extensions>true</extensions>
65 <configuration>
66 <instructions>
67 <Bundle-Category>osgi</Bundle-Category>
Carsten Ziegeler36539552007-09-17 14:24:30 +000068 <Bundle-SymbolicName>
69 ${artifactId}
70 </Bundle-SymbolicName>
Carsten Ziegeler21004af2009-06-23 07:09:19 +000071 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
Carsten Ziegeler122a4042007-07-30 12:57:54 +000072 <Export-Package>
Carsten Ziegeler2234ede2007-07-30 13:05:50 +000073 org.apache.felix.prefs,
Carsten Ziegeler122a4042007-07-30 12:57:54 +000074 org.osgi.service.prefs;version=1.1
75 </Export-Package>
76 <Private-Package>
Carsten Ziegeler50161ac2007-12-28 15:22:45 +000077 org.apache.felix.prefs.impl,
Stuart McCulloch81ac8952008-01-31 03:57:00 +000078 org.apache.commons.codec,
Carsten Ziegeler50161ac2007-12-28 15:22:45 +000079 org.apache.commons.codec.binary
Carsten Ziegeler122a4042007-07-30 12:57:54 +000080 </Private-Package>
81 <Bundle-Activator>
Carsten Ziegeler2234ede2007-07-30 13:05:50 +000082 org.apache.felix.prefs.impl.PreferencesManager
Carsten Ziegeler122a4042007-07-30 12:57:54 +000083 </Bundle-Activator>
84 </instructions>
85 </configuration>
86 </plugin>
87 </plugins>
88 </build>
Carsten Ziegeler122a4042007-07-30 12:57:54 +000089</project>