blob: 194d92fff97a09de491e0a2ecde4239a1ee9f5e1 [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 Ziegeler2234ede2007-07-30 13:05:50 +000020<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 Ziegeler122a4042007-07-30 12:57:54 +000023 <modelVersion>4.0.0</modelVersion>
Carsten Ziegeler2234ede2007-07-30 13:05:50 +000024
Carsten Ziegeler122a4042007-07-30 12:57:54 +000025 <parent>
26 <groupId>org.apache.felix</groupId>
27 <artifactId>felix</artifactId>
28 <version>1.0.0</version>
Carsten Ziegeler2234ede2007-07-30 13:05:50 +000029 <relativePath>../pom</relativePath>
Carsten Ziegeler122a4042007-07-30 12:57:54 +000030 </parent>
31
32 <artifactId>org.apache.felix.preferences</artifactId>
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 Ziegeler2234ede2007-07-30 13:05:50 +000070 org.apache.felix.prefs,
Carsten Ziegeler122a4042007-07-30 12:57:54 +000071 org.osgi.service.prefs;version=1.1
72 </Export-Package>
73 <Private-Package>
Carsten Ziegeler2234ede2007-07-30 13:05:50 +000074 org.apache.felix.prefs.*,
Carsten Ziegeler122a4042007-07-30 12:57:54 +000075 org.apache.commons.codec.binary.*
76 </Private-Package>
77 <Bundle-Activator>
Carsten Ziegeler2234ede2007-07-30 13:05:50 +000078 org.apache.felix.prefs.impl.PreferencesManager
Carsten Ziegeler122a4042007-07-30 12:57:54 +000079 </Bundle-Activator>
80 </instructions>
81 </configuration>
82 </plugin>
83 </plugins>
84 </build>
85</project>