Marcel Offermans | b20ea20 | 2008-09-18 21:18:03 +0000 | [diff] [blame] | 1 | <?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 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 | <parent> |
| 22 | <groupId>org.apache.felix</groupId> |
| 23 | <artifactId>felix</artifactId> |
Clement Escoffier | 4ae8697 | 2009-04-09 12:09:09 +0000 | [diff] [blame] | 24 | <version>1.0.4</version> |
Marcel Offermans | b20ea20 | 2008-09-18 21:18:03 +0000 | [diff] [blame] | 25 | <relativePath>../pom/pom.xml</relativePath> |
| 26 | </parent> |
| 27 | <modelVersion>4.0.0</modelVersion> |
| 28 | <packaging>bundle</packaging> |
| 29 | <name>Apache Felix Dependency Manager Shell</name> |
Marcel Offermans | 885c5f9 | 2009-03-30 19:53:03 +0000 | [diff] [blame] | 30 | <version>2.0.2-SNAPSHOT</version> |
Marcel Offermans | b20ea20 | 2008-09-18 21:18:03 +0000 | [diff] [blame] | 31 | <artifactId>org.apache.felix.dependencymanager.shell</artifactId> |
| 32 | <dependencies> |
| 33 | <dependency> |
| 34 | <groupId>${pom.groupId}</groupId> |
| 35 | <artifactId>org.osgi.core</artifactId> |
Marcel Offermans | 5fdbb96 | 2009-01-28 20:47:35 +0000 | [diff] [blame] | 36 | <version>1.2.0</version> |
Marcel Offermans | b20ea20 | 2008-09-18 21:18:03 +0000 | [diff] [blame] | 37 | <scope>provided</scope> |
| 38 | </dependency> |
| 39 | <dependency> |
| 40 | <groupId>${pom.groupId}</groupId> |
| 41 | <artifactId>org.osgi.compendium</artifactId> |
Marcel Offermans | 5fdbb96 | 2009-01-28 20:47:35 +0000 | [diff] [blame] | 42 | <version>1.2.0</version> |
Marcel Offermans | b20ea20 | 2008-09-18 21:18:03 +0000 | [diff] [blame] | 43 | <scope>provided</scope> |
| 44 | </dependency> |
| 45 | <dependency> |
| 46 | <groupId>${pom.groupId}</groupId> |
| 47 | <artifactId>org.apache.felix.shell</artifactId> |
Marcel Offermans | 5fdbb96 | 2009-01-28 20:47:35 +0000 | [diff] [blame] | 48 | <version>1.0.2</version> |
Marcel Offermans | b20ea20 | 2008-09-18 21:18:03 +0000 | [diff] [blame] | 49 | </dependency> |
Marcel Offermans | 696b835 | 2008-09-18 21:26:14 +0000 | [diff] [blame] | 50 | <dependency> |
| 51 | <groupId>${pom.groupId}</groupId> |
| 52 | <artifactId>org.apache.felix.dependencymanager</artifactId> |
Stuart McCulloch | f6bd608 | 2009-08-14 15:45:33 +0000 | [diff] [blame] | 53 | <version>2.0.1</version> |
Marcel Offermans | 696b835 | 2008-09-18 21:26:14 +0000 | [diff] [blame] | 54 | </dependency> |
Marcel Offermans | b20ea20 | 2008-09-18 21:18:03 +0000 | [diff] [blame] | 55 | </dependencies> |
| 56 | <build> |
| 57 | <plugins> |
| 58 | <plugin> |
| 59 | <groupId>org.apache.felix</groupId> |
| 60 | <artifactId>maven-bundle-plugin</artifactId> |
| 61 | <version>1.4.0</version> |
| 62 | <extensions>true</extensions> |
| 63 | <configuration> |
| 64 | <instructions> |
| 65 | <Bundle-SymbolicName>org.apache.felix.dependencymanager.shell</Bundle-SymbolicName> |
| 66 | <Bundle-Activator>org.apache.felix.dependencymanager.shell.Activator</Bundle-Activator> |
| 67 | <Bundle-Name>Apache Felix Dependency Manager Shell</Bundle-Name> |
Marcel Offermans | b264a2a | 2008-11-25 00:09:57 +0000 | [diff] [blame] | 68 | <Bundle-Description>Shell command for the dependency manager.</Bundle-Description> |
Marcel Offermans | b20ea20 | 2008-09-18 21:18:03 +0000 | [diff] [blame] | 69 | <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor> |
| 70 | </instructions> |
| 71 | </configuration> |
| 72 | </plugin> |
| 73 | </plugins> |
| 74 | </build> |
Marcel Offermans | b20ea20 | 2008-09-18 21:18:03 +0000 | [diff] [blame] | 75 | </project> |