Pierre De Rop | cd1e58e | 2010-01-11 21:37:08 +0000 | [diff] [blame] | 1 | <?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 Offermans | e7951e3 | 2010-08-18 13:41:45 +0000 | [diff] [blame] | 18 | 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 Rop | cd1e58e | 2010-01-11 21:37:08 +0000 | [diff] [blame] | 20 | |
Marcel Offermans | e7951e3 | 2010-08-18 13:41:45 +0000 | [diff] [blame] | 21 | <parent> |
| 22 | <groupId>org.apache.felix</groupId> |
| 23 | <artifactId>dependencymanager-reactor</artifactId> |
| 24 | <version>3.0.0-SNAPSHOT</version> |
| 25 | </parent> |
Pierre De Rop | cd1e58e | 2010-01-11 21:37:08 +0000 | [diff] [blame] | 26 | |
Marcel Offermans | e7951e3 | 2010-08-18 13:41:45 +0000 | [diff] [blame] | 27 | <name>Apache Felix Dependency Manager Runtime</name> |
| 28 | <artifactId>org.apache.felix.dependencymanager.runtime</artifactId> |
| 29 | <packaging>bundle</packaging> |
Pierre De Rop | cd1e58e | 2010-01-11 21:37:08 +0000 | [diff] [blame] | 30 | |
Pierre De Rop | cd1e58e | 2010-01-11 21:37:08 +0000 | [diff] [blame] | 31 | |
Marcel Offermans | e7951e3 | 2010-08-18 13:41:45 +0000 | [diff] [blame] | 32 | <dependencies> |
| 33 | <dependency> |
| 34 | <groupId>org.osgi</groupId> |
| 35 | <artifactId>org.osgi.core</artifactId> |
| 36 | </dependency> |
| 37 | <dependency> |
| 38 | <groupId>org.osgi</groupId> |
| 39 | <artifactId>org.osgi.compendium</artifactId> |
| 40 | </dependency> |
| 41 | |
| 42 | <dependency> |
| 43 | <groupId>${pom.groupId}</groupId> |
| 44 | <artifactId>org.apache.felix.dependencymanager</artifactId> |
| 45 | </dependency> |
| 46 | |
| 47 | <dependency> |
| 48 | <groupId>org.json</groupId> |
| 49 | <artifactId>json</artifactId> |
| 50 | <scope>provided</scope> |
| 51 | </dependency> |
| 52 | </dependencies> |
| 53 | |
| 54 | <build> |
| 55 | <plugins> |
| 56 | <plugin> |
| 57 | <groupId>org.apache.maven.plugins</groupId> |
| 58 | <artifactId>maven-compiler-plugin</artifactId> |
| 59 | <configuration> |
| 60 | <source>1.5</source> |
| 61 | <target>1.5</target> |
| 62 | </configuration> |
| 63 | </plugin> |
| 64 | |
| 65 | <plugin> |
| 66 | <groupId>org.apache.felix</groupId> |
| 67 | <artifactId>maven-bundle-plugin</artifactId> |
| 68 | <configuration> |
| 69 | <instructions> |
| 70 | <Bundle-SymbolicName>org.apache.felix.dependencymanager.runtime</Bundle-SymbolicName> |
| 71 | <Bundle-Name>Apache Felix Dependency Manager Runtime</Bundle-Name> |
| 72 | <Bundle-Description>A bundle that loads components descriptors from started bundles</Bundle-Description> |
| 73 | <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor> |
| 74 | <Private-Package>org.apache.felix.dm.runtime.*</Private-Package> |
| 75 | <Import-Package>org.apache.felix.dm;version="[3.0.0,4.0.0)",*</Import-Package> |
| 76 | <Embed-Dependency>json</Embed-Dependency> |
| 77 | <Bundle-Activator>org.apache.felix.dm.runtime.Activator</Bundle-Activator> |
| 78 | </instructions> |
| 79 | </configuration> |
| 80 | </plugin> |
| 81 | </plugins> |
| 82 | </build> |
Pierre De Rop | cd1e58e | 2010-01-11 21:37:08 +0000 | [diff] [blame] | 83 | </project> |