blob: 79386613c42c375439f43aef31989e400c65abab [file] [log] [blame]
Marcel Offermans59c526a2008-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>
24 <version>1.0.2</version>
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 Offermans5284b052009-01-28 21:33:03 +000030 <version>2.0.1-SNAPSHOT</version>
Marcel Offermans59c526a2008-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 Offermans50ab3332009-01-28 20:47:35 +000036 <version>1.2.0</version>
Marcel Offermans59c526a2008-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 Offermans50ab3332009-01-28 20:47:35 +000042 <version>1.2.0</version>
Marcel Offermans59c526a2008-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 Offermans50ab3332009-01-28 20:47:35 +000048 <version>1.0.2</version>
Marcel Offermans59c526a2008-09-18 21:18:03 +000049 </dependency>
Marcel Offermansb50c4cf2008-09-18 21:26:14 +000050 <dependency>
51 <groupId>${pom.groupId}</groupId>
52 <artifactId>org.apache.felix.dependencymanager</artifactId>
Marcel Offermansca942b22009-03-30 19:52:08 +000053 <version>2.0.1</version>
Marcel Offermansb50c4cf2008-09-18 21:26:14 +000054 </dependency>
Marcel Offermans59c526a2008-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 Offermans1a7b6082008-11-25 00:09:57 +000068 <Bundle-Description>Shell command for the dependency manager.</Bundle-Description>
Marcel Offermans59c526a2008-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 Offermans59c526a2008-09-18 21:18:03 +000075</project>