blob: c1a805b8d577cfff241a33b70a040847c6d6d894 [file] [log] [blame]
Christian van Spaandonkb5faa2a2008-06-02 11:39:58 +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-->
Marcel Offermans4ce86692011-04-27 23:01:14 +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">
21 <modelVersion>4.0.0</modelVersion>
22 <parent>
Christian van Spaandonkb5faa2a2008-06-02 11:39:58 +000023 <groupId>org.apache.felix</groupId>
Marcel Offermans4ce86692011-04-27 23:01:14 +000024 <artifactId>felix-parent</artifactId>
25 <version>1.2.0</version>
26 <relativePath>../../pom/pom.xml</relativePath>
27 </parent>
28 <properties>
29 <osgi.version>4.2.0</osgi.version>
30 </properties>
31 <name>Apache Felix Deployment Admin</name>
32 <artifactId>org.apache.felix.deploymentadmin</artifactId>
Marcel Offermans9b542932011-04-30 09:03:30 +000033 <version>0.9.0</version>
Marcel Offermans4ce86692011-04-27 23:01:14 +000034 <packaging>bundle</packaging>
35 <dependencies>
36 <dependency>
37 <groupId>org.osgi</groupId>
38 <artifactId>org.osgi.core</artifactId>
39 <version>${osgi.version}</version>
40 </dependency>
41 <dependency>
42 <groupId>org.osgi</groupId>
43 <artifactId>org.osgi.compendium</artifactId>
44 <version>${osgi.version}</version>
45 </dependency>
46 <dependency>
47 <groupId>${pom.groupId}</groupId>
48 <artifactId>org.apache.felix.dependencymanager</artifactId>
Marcel Offermansfdf09212011-04-30 09:01:51 +000049 <version>3.0.0</version>
Marcel Offermans4ce86692011-04-27 23:01:14 +000050 <scope>provided</scope>
51 </dependency>
52 </dependencies>
53 <build>
Marcel Offermans1c8e4082011-04-29 15:02:34 +000054 <resources>
55 <resource>
56 <directory>.</directory>
57 <targetPath>META-INF</targetPath>
58 <includes>
59 <include>LICENSE*</include>
60 <include>NOTICE*</include>
61 <include>DEPENDENCIES*</include>
62 </includes>
63 </resource>
64 </resources>
Marcel Offermans4ce86692011-04-27 23:01:14 +000065 <plugins>
66 <plugin>
67 <groupId>org.apache.felix</groupId>
68 <artifactId>maven-bundle-plugin</artifactId>
69 <version>2.3.4</version>
70 <extensions>true</extensions>
71 <configuration>
72 <instructions>
73 <Bundle-SymbolicName>org.apache.felix.deploymentadmin</Bundle-SymbolicName>
74 <Bundle-Activator>org.apache.felix.deploymentadmin.Activator</Bundle-Activator>
75 <Bundle-Name>Apache Felix Deployment Admin</Bundle-Name>
76 <Bundle-Description>A bundle that implements the Deployment Admin.</Bundle-Description>
77 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
78 <Private-Package>org.apache.felix.deploymentadmin.*</Private-Package>
79 <Export-Package>org.osgi.service.deploymentadmin.*;version="1.0"</Export-Package>
80 </instructions>
81 </configuration>
82 </plugin>
83 </plugins>
84 </build>
Marcel Offermans9b542932011-04-30 09:03:30 +000085
86 <scm>
87 <connection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.deploymentadmin-0.9.0</connection>
88 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.deploymentadmin-0.9.0</developerConnection>
89 <url>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.deploymentadmin-0.9.0</url>
90 </scm>
Christian van Spaandonkb5faa2a2008-06-02 11:39:58 +000091</project>