blob: 0337a58604fc229962279528ca3fef63e6daae22 [file] [log] [blame]
Marcel Offermansb20ea202008-09-18 21:18:03 +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-->
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 Escoffier4ae86972009-04-09 12:09:09 +000024 <version>1.0.4</version>
Marcel Offermansb20ea202008-09-18 21:18:03 +000025 <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 Offermans885c5f92009-03-30 19:53:03 +000030 <version>2.0.2-SNAPSHOT</version>
Marcel Offermansb20ea202008-09-18 21:18:03 +000031 <artifactId>org.apache.felix.dependencymanager.shell</artifactId>
32 <dependencies>
33 <dependency>
34 <groupId>${pom.groupId}</groupId>
35 <artifactId>org.osgi.core</artifactId>
Marcel Offermans5fdbb962009-01-28 20:47:35 +000036 <version>1.2.0</version>
Marcel Offermansb20ea202008-09-18 21:18:03 +000037 <scope>provided</scope>
38 </dependency>
39 <dependency>
40 <groupId>${pom.groupId}</groupId>
41 <artifactId>org.osgi.compendium</artifactId>
Marcel Offermans5fdbb962009-01-28 20:47:35 +000042 <version>1.2.0</version>
Marcel Offermansb20ea202008-09-18 21:18:03 +000043 <scope>provided</scope>
44 </dependency>
45 <dependency>
46 <groupId>${pom.groupId}</groupId>
47 <artifactId>org.apache.felix.shell</artifactId>
Marcel Offermans5fdbb962009-01-28 20:47:35 +000048 <version>1.0.2</version>
Marcel Offermansb20ea202008-09-18 21:18:03 +000049 </dependency>
Marcel Offermans696b8352008-09-18 21:26:14 +000050 <dependency>
51 <groupId>${pom.groupId}</groupId>
52 <artifactId>org.apache.felix.dependencymanager</artifactId>
Stuart McCullochf6bd6082009-08-14 15:45:33 +000053 <version>2.0.1</version>
Marcel Offermans696b8352008-09-18 21:26:14 +000054 </dependency>
Marcel Offermansb20ea202008-09-18 21:18:03 +000055 </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 Offermansb264a2a2008-11-25 00:09:57 +000068 <Bundle-Description>Shell command for the dependency manager.</Bundle-Description>
Marcel Offermansb20ea202008-09-18 21:18:03 +000069 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
70 </instructions>
71 </configuration>
72 </plugin>
73 </plugins>
74 </build>
Marcel Offermansb20ea202008-09-18 21:18:03 +000075</project>