blob: f93b2f68d4fb3c19f23a5a06bd625f64c3ebe914 [file] [log] [blame]
Pierre De Ropc21fa882010-01-11 21:37:08 +00001<?xml version="1.0" encoding="UTF-8"?>
Marcel Offermans0994a312011-04-27 10:14:59 +00002<!--
Pierre De Ropc21fa882010-01-11 21:37:08 +00003 Licensed to the Apache Software Foundation (ASF) under one or more
4 contributor license agreements. See the NOTICE file distributed with
5 this work for additional information regarding copyright ownership.
6 The ASF licenses this file to you under the Apache License, Version
7 2.0 (the "License"); you may not use this file except in compliance
8 with the License. You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0 Unless required by
11 applicable law or agreed to in writing, software distributed under
12 the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES
13 OR CONDITIONS OF ANY KIND, either express or implied. See the
14 License for the specific language governing permissions and
15 limitations under the License.
16 -->
Marcel Offermans0994a312011-04-27 10:14:59 +000017<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">
18 <modelVersion>4.0.0</modelVersion>
19 <parent>
20 <groupId>org.apache.felix</groupId>
21 <artifactId>felix-parent</artifactId>
22 <version>1.2.0</version>
23 <relativePath>../../pom/pom.xml</relativePath>
24 </parent>
25 <properties>
26 <osgi.version>4.2.0</osgi.version>
27 </properties>
28 <name>Apache Felix Dependency Manager Runtime</name>
29 <artifactId>org.apache.felix.dependencymanager.runtime</artifactId>
Marcel Offermans06c30c02011-04-30 08:49:52 +000030 <version>3.0.1-SNAPSHOT</version>
Marcel Offermans0994a312011-04-27 10:14:59 +000031 <packaging>bundle</packaging>
32 <dependencies>
33 <dependency>
34 <groupId>org.osgi</groupId>
35 <artifactId>org.osgi.core</artifactId>
36 <version>${osgi.version}</version>
37 </dependency>
38 <dependency>
39 <groupId>org.osgi</groupId>
40 <artifactId>org.osgi.compendium</artifactId>
41 <version>${osgi.version}</version>
42 </dependency>
43 <dependency>
44 <groupId>${pom.groupId}</groupId>
45 <artifactId>org.apache.felix.dependencymanager</artifactId>
Marcel Offermans8edbaa42011-04-30 08:42:28 +000046 <version>3.0.0</version>
Marcel Offermans0994a312011-04-27 10:14:59 +000047 </dependency>
48 <dependency>
49 <groupId>org.json</groupId>
50 <artifactId>json</artifactId>
51 <scope>provided</scope>
52 <version>20070829</version>
53 </dependency>
54 </dependencies>
55 <build>
Marcel Offermans75177fe2011-04-29 15:40:23 +000056 <resources>
57 <resource>
58 <directory>.</directory>
59 <targetPath>META-INF</targetPath>
60 <includes>
61 <include>LICENSE*</include>
62 <include>NOTICE*</include>
63 <include>DEPENDENCIES*</include>
64 </includes>
65 </resource>
66 </resources>
Marcel Offermans0994a312011-04-27 10:14:59 +000067 <pluginManagement>
68 <plugins>
69 <plugin>
70 <groupId>org.apache.felix</groupId>
71 <artifactId>maven-bundle-plugin</artifactId>
72 <version>2.3.4</version>
73 <extensions>true</extensions>
74 </plugin>
75 </plugins>
76 </pluginManagement>
77 <plugins>
78 <plugin>
79 <groupId>org.apache.maven.plugins</groupId>
80 <artifactId>maven-compiler-plugin</artifactId>
81 <configuration>
82 <source>1.5</source>
83 <target>1.5</target>
84 </configuration>
85 </plugin>
86 <plugin>
87 <groupId>org.apache.felix</groupId>
88 <artifactId>maven-bundle-plugin</artifactId>
89 <configuration>
90 <instructions>
91 <Bundle-SymbolicName>org.apache.felix.dependencymanager.runtime</Bundle-SymbolicName>
92 <Bundle-Name>Apache Felix Dependency Manager Runtime</Bundle-Name>
Marcel Offermans86bfb702011-04-28 22:39:29 +000093 <Bundle-Description>Loads component descriptors from active bundles.</Bundle-Description>
Marcel Offermans0994a312011-04-27 10:14:59 +000094 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
Pierre De Rop195de6f2011-04-27 11:47:42 +000095 <Private-Package>org.apache.felix.dm.runtime</Private-Package>
Marcel Offermans0994a312011-04-27 10:14:59 +000096 <Import-Package>*</Import-Package>
Marcel Offermansfa338cd2011-04-30 08:49:34 +000097 <Export-Package />
Marcel Offermans0994a312011-04-27 10:14:59 +000098 <Embed-Dependency>json</Embed-Dependency>
99 <Bundle-Activator>org.apache.felix.dm.runtime.Activator</Bundle-Activator>
100 </instructions>
101 </configuration>
102 </plugin>
103 </plugins>
104 </build>
Pierre De Ropc21fa882010-01-11 21:37:08 +0000105</project>