blob: 4be5396f696b6a6aaab3b47845179f135c4ae7e3 [file] [log] [blame]
Marcel Offermanse947c162008-01-30 16:46:24 +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-->
20<project>
21 <parent>
22 <groupId>org.apache.felix</groupId>
23 <artifactId>felix</artifactId>
Stefano Lenzi17d31382008-03-05 08:21:06 +000024 <version>1.0.2</version>
Marcel Offermanse947c162008-01-30 16:46:24 +000025 <relativePath>../pom/pom.xml</relativePath>
26 </parent>
27 <modelVersion>4.0.0</modelVersion>
28 <packaging>bundle</packaging>
29 <name>Apache Felix Deployment Admin</name>
Stefano Lenzi17d31382008-03-05 08:21:06 +000030 <version>0.9.0-SNAPSHOT</version>
Marcel Offermanse947c162008-01-30 16:46:24 +000031 <artifactId>org.apache.felix.deploymentadmin</artifactId>
32 <dependencies>
33 <dependency>
34 <groupId>${pom.groupId}</groupId>
35 <artifactId>org.osgi.core</artifactId>
Stefano Lenzi17d31382008-03-05 08:21:06 +000036 <version>1.0.0</version>
Marcel Offermanse947c162008-01-30 16:46:24 +000037 <scope>provided</scope>
38 </dependency>
39 <dependency>
40 <groupId>${pom.groupId}</groupId>
41 <artifactId>org.osgi.compendium</artifactId>
Stefano Lenzi17d31382008-03-05 08:21:06 +000042 <version>1.0.0</version>
Marcel Offermanse947c162008-01-30 16:46:24 +000043 <scope>provided</scope>
44 </dependency>
45 <dependency>
46 <groupId>${pom.groupId}</groupId>
47 <artifactId>org.apache.felix.dependencymanager</artifactId>
Stefano Lenzi17d31382008-03-05 08:21:06 +000048 <version>1.1.0-SNAPSHOT</version>
Marcel Offermanse947c162008-01-30 16:46:24 +000049 <scope>provided</scope>
50 </dependency>
51 </dependencies>
52 <build>
53 <plugins>
54 <plugin>
55 <groupId>org.apache.felix</groupId>
56 <artifactId>maven-bundle-plugin</artifactId>
Stefano Lenzi17d31382008-03-05 08:21:06 +000057 <version>1.4.0</version>
Marcel Offermanse947c162008-01-30 16:46:24 +000058 <extensions>true</extensions>
59 <configuration>
60 <instructions>
61 <Bundle-SymbolicName>org.apache.felix.deploymentadmin</Bundle-SymbolicName>
62 <Bundle-Activator>org.apache.felix.deploymentadmin.Activator</Bundle-Activator>
Carsten Ziegelercf6e51b2008-04-17 06:33:59 +000063 <Bundle-Name>Apache Felix Deployment Admin</Bundle-Name>
Marcel Offermanse947c162008-01-30 16:46:24 +000064 <Bundle-Description>A bundle that implements the Deployment Admin.</Bundle-Description>
Carsten Ziegelercf6e51b2008-04-17 06:33:59 +000065 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
66 <Private-Package>org.apache.felix.deploymentadmin.spi</Private-Package>
67 <Export-Package>org.apache.felix.deploymentadmin,org.osgi.service.deploymentadmin.*;version="1.0.0"</Export-Package>
Marcel Offermanse947c162008-01-30 16:46:24 +000068 </instructions>
69 </configuration>
70 </plugin>
71 </plugins>
72 </build>
73</project>