blob: 0a9749f00f51877a717278e993859030084911b1 [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 Offermans0994a312011-04-27 10:14:59 +000020<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 <modelVersion>4.0.0</modelVersion>
22 <parent>
23 <groupId>org.apache.felix</groupId>
24 <artifactId>felix-parent</artifactId>
25 <version>1.2.0</version>
26 <relativePath>../../pom/pom.xml</relativePath>
27 </parent>
28 <properties>
29 <osgi.version>4.2.0</osgi.version>
30 </properties>
31 <name>Apache Felix Dependency Manager Shell</name>
32 <artifactId>org.apache.felix.dependencymanager.shell</artifactId>
Marcel Offermans8381cb42011-04-30 08:43:18 +000033 <version>3.0.0</version>
Marcel Offermans0994a312011-04-27 10:14:59 +000034 <packaging>bundle</packaging>
35 <dependencies>
36 <dependency>
37 <groupId>${pom.groupId}</groupId>
38 <artifactId>org.apache.felix.dependencymanager</artifactId>
Marcel Offermans8edbaa42011-04-30 08:42:28 +000039 <version>3.0.0</version>
Marcel Offermans0994a312011-04-27 10:14:59 +000040 </dependency>
41 <dependency>
42 <groupId>org.osgi</groupId>
43 <artifactId>org.osgi.core</artifactId>
44 <version>${osgi.version}</version>
45 </dependency>
46 <dependency>
47 <groupId>org.osgi</groupId>
48 <artifactId>org.osgi.compendium</artifactId>
49 <version>${osgi.version}</version>
50 </dependency>
51 <dependency>
52 <groupId>${pom.groupId}</groupId>
53 <artifactId>org.apache.felix.shell</artifactId>
54 <version>1.4.1</version>
55 </dependency>
56 <dependency>
57 <groupId>${pom.groupId}</groupId>
58 <artifactId>org.apache.felix.gogo.runtime</artifactId>
59 <version>0.6.0</version>
60 </dependency>
61 <dependency>
62 <groupId>org.eclipse.equinox</groupId>
63 <artifactId>osgi</artifactId>
64 <version>3.1.1</version>
65 <scope>provided</scope>
66 </dependency>
67 </dependencies>
68 <build>
Marcel Offermans75177fe2011-04-29 15:40:23 +000069 <resources>
70 <resource>
71 <directory>.</directory>
72 <targetPath>META-INF</targetPath>
73 <includes>
74 <include>LICENSE*</include>
75 <include>NOTICE*</include>
76 <include>DEPENDENCIES*</include>
77 </includes>
78 </resource>
79 </resources>
Marcel Offermans0994a312011-04-27 10:14:59 +000080 <pluginManagement>
81 <plugins>
82 <plugin>
83 <groupId>org.apache.felix</groupId>
84 <artifactId>maven-bundle-plugin</artifactId>
85 <version>2.3.4</version>
86 <extensions>true</extensions>
87 </plugin>
88 </plugins>
89 </pluginManagement>
90 <plugins>
91 <plugin>
92 <groupId>org.apache.maven.plugins</groupId>
93 <artifactId>maven-compiler-plugin</artifactId>
94 <configuration>
95 <target>1.3</target>
96 </configuration>
97 </plugin>
98 <plugin>
99 <groupId>org.apache.felix</groupId>
100 <artifactId>maven-bundle-plugin</artifactId>
101 <configuration>
102 <instructions>
103 <Bundle-SymbolicName>org.apache.felix.dependencymanager.shell</Bundle-SymbolicName>
104 <Bundle-Activator>org.apache.felix.dm.shell.Activator</Bundle-Activator>
105 <Bundle-Name>Apache Felix Dependency Manager Shell</Bundle-Name>
106 <Bundle-Description>Shell command for the dependency manager.</Bundle-Description>
107 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
Marcel Offermans8381cb42011-04-30 08:43:18 +0000108 <Export-Package />
Marcel Offermans0994a312011-04-27 10:14:59 +0000109 <Private-Package>org.apache.felix.dm.shell</Private-Package>
110 <Import-Package>org.apache.felix.shell;resolution:=optional, org.eclipse.osgi.framework.console;resolution:=optional, org.apache.felix.service.command;resolution:=optional, *</Import-Package>
111 </instructions>
112 </configuration>
113 </plugin>
114 </plugins>
115 </build>
Marcel Offermans8381cb42011-04-30 08:43:18 +0000116
117 <scm>
118 <connection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.dependencymanager.shell-3.0.0</connection>
119 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.dependencymanager.shell-3.0.0</developerConnection>
120 <url>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.dependencymanager.shell-3.0.0</url>
121 </scm>
Marcel Offermans59c526a2008-09-18 21:18:03 +0000122</project>