blob: cdb26fda652cfc0da8aa2c52b41856e244f33782 [file] [log] [blame]
Pierre De Ropcd1e58e2010-01-11 21:37:08 +00001<?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 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 -->
17<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Marcel Offermanse7951e32010-08-18 13:41:45 +000018 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
19 <modelVersion>4.0.0</modelVersion>
Pierre De Ropcd1e58e2010-01-11 21:37:08 +000020
Marcel Offermanse7951e32010-08-18 13:41:45 +000021 <parent>
22 <groupId>org.apache.felix</groupId>
23 <artifactId>dependencymanager-reactor</artifactId>
24 <version>3.0.0-SNAPSHOT</version>
25 </parent>
Pierre De Ropcd1e58e2010-01-11 21:37:08 +000026
Marcel Offermanse7951e32010-08-18 13:41:45 +000027 <name>Apache Felix Dependency Manager Runtime</name>
28 <artifactId>org.apache.felix.dependencymanager.runtime</artifactId>
29 <packaging>bundle</packaging>
Pierre De Ropcd1e58e2010-01-11 21:37:08 +000030
Marcel Offermanse7951e32010-08-18 13:41:45 +000031 <dependencies>
32 <dependency>
33 <groupId>org.osgi</groupId>
34 <artifactId>org.osgi.core</artifactId>
35 </dependency>
36 <dependency>
37 <groupId>org.osgi</groupId>
38 <artifactId>org.osgi.compendium</artifactId>
39 </dependency>
40
41 <dependency>
42 <groupId>${pom.groupId}</groupId>
43 <artifactId>org.apache.felix.dependencymanager</artifactId>
44 </dependency>
45
46 <dependency>
47 <groupId>org.json</groupId>
48 <artifactId>json</artifactId>
49 <scope>provided</scope>
50 </dependency>
51 </dependencies>
52
53 <build>
54 <plugins>
55 <plugin>
56 <groupId>org.apache.maven.plugins</groupId>
57 <artifactId>maven-compiler-plugin</artifactId>
58 <configuration>
59 <source>1.5</source>
60 <target>1.5</target>
61 </configuration>
62 </plugin>
63
64 <plugin>
65 <groupId>org.apache.felix</groupId>
66 <artifactId>maven-bundle-plugin</artifactId>
67 <configuration>
68 <instructions>
69 <Bundle-SymbolicName>org.apache.felix.dependencymanager.runtime</Bundle-SymbolicName>
70 <Bundle-Name>Apache Felix Dependency Manager Runtime</Bundle-Name>
71 <Bundle-Description>A bundle that loads components descriptors from started bundles</Bundle-Description>
72 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
73 <Private-Package>org.apache.felix.dm.runtime.*</Private-Package>
74 <Import-Package>org.apache.felix.dm;version="[3.0.0,4.0.0)",*</Import-Package>
75 <Embed-Dependency>json</Embed-Dependency>
76 <Bundle-Activator>org.apache.felix.dm.runtime.Activator</Bundle-Activator>
Pierre De Ropb1a30d02011-02-03 21:54:39 +000077 <Include-Resource>META-INF/LICENSE=LICENSE,META-INF/NOTICE=NOTICE,META-INF/DEPENDENCIES=DEPENDENCIES</Include-Resource>
Marcel Offermanse7951e32010-08-18 13:41:45 +000078 </instructions>
79 </configuration>
80 </plugin>
81 </plugins>
82 </build>
Pierre De Ropcd1e58e2010-01-11 21:37:08 +000083</project>