blob: 5a712656b76dfce9544f1a32dc1ee5858fc5a2af [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-->
Marcel Offermansecd32b02010-08-18 13:41:45 +000020<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
21 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
22 <modelVersion>4.0.0</modelVersion>
23
24 <parent>
25 <groupId>org.apache.felix</groupId>
26 <artifactId>dependencymanager-reactor</artifactId>
27 <version>3.0.0-SNAPSHOT</version>
28 </parent>
29
30 <name>Apache Felix Dependency Manager Shell</name>
31 <artifactId>org.apache.felix.dependencymanager.shell</artifactId>
32 <packaging>bundle</packaging>
33
34 <dependencies>
35 <dependency>
36 <groupId>org.osgi</groupId>
37 <artifactId>org.osgi.core</artifactId>
38 </dependency>
39 <dependency>
40 <groupId>org.osgi</groupId>
41 <artifactId>org.osgi.compendium</artifactId>
42 </dependency>
43
44 <dependency>
45 <groupId>${pom.groupId}</groupId>
46 <artifactId>org.apache.felix.shell</artifactId>
47 </dependency>
48 <dependency>
49 <groupId>${pom.groupId}</groupId>
50 <artifactId>org.apache.felix.dependencymanager</artifactId>
51 </dependency>
52 <dependency>
53 <groupId>${pom.groupId}</groupId>
54 <artifactId>org.apache.felix.gogo.runtime</artifactId>
55 </dependency>
56
57 <dependency>
58 <groupId>org.eclipse.equinox</groupId>
59 <artifactId>osgi</artifactId>
60 <scope>provided</scope>
61 </dependency>
62 </dependencies>
63
64 <build>
65 <plugins>
66 <plugin>
67 <groupId>org.apache.felix</groupId>
68 <artifactId>maven-bundle-plugin</artifactId>
69 <configuration>
70 <instructions>
Pierre De Rop9394cb62011-02-26 22:22:37 +000071 <Bundle-SymbolicName>org.apache.felix.dependencymanager.shell</Bundle-SymbolicName>
Marcel Offermansecd32b02010-08-18 13:41:45 +000072 <Bundle-Activator>org.apache.felix.dm.shell.Activator</Bundle-Activator>
73 <Bundle-Name>Apache Felix Dependency Manager Shell</Bundle-Name>
74 <Bundle-Description>Shell command for the dependency manager.</Bundle-Description>
75 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
76 <Export-Package></Export-Package>
77 <Private-Package>org.apache.felix.dm.shell</Private-Package>
78 <Import-Package>org.apache.felix.dm;version="[3.0.0,4.0.0)",org.apache.felix.shell;version="1.0";resolution:=optional,org.osgi.framework;version="1.3",org.eclipse.osgi.framework.console;resolution:=optional,org.apache.felix.service.command;resolution:=optional</Import-Package>
79 </instructions>
80 </configuration>
81 </plugin>
82 </plugins>
83 </build>
84
Marcel Offermans59c526a2008-09-18 21:18:03 +000085</project>