blob: ab0437d2b6b8c3cfa1d3b7a3e67fe78f772ce574 [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-->
Marcel Offermans89c60cc2011-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>
Pierre De Rop37ef6512014-07-13 12:05:06 +000025 <version>1.2.0</version>
Marcel Offermans89c60cc2011-04-27 10:14:59 +000026 <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>
Pierre De Ropd139f7c2014-07-13 15:16:32 +000033 <version>3.2.1-SNAPSHOT</version>
Marcel Offermans89c60cc2011-04-27 10:14:59 +000034 <packaging>bundle</packaging>
Pierre De Rop74285ae2014-07-07 10:33:38 +000035
36 <scm>
Pierre De Ropd139f7c2014-07-13 15:16:32 +000037 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/dependencymanager/shell</connection>
38 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/dependencymanager/shell</developerConnection>
39 <url>http://svn.apache.org/repos/asf/felix/dependencymanager/shell</url>
Pierre De Rop5d3fd5f2014-07-07 11:55:01 +000040 </scm>
Pierre De Rop74285ae2014-07-07 10:33:38 +000041
Marcel Offermans89c60cc2011-04-27 10:14:59 +000042 <dependencies>
43 <dependency>
44 <groupId>${pom.groupId}</groupId>
45 <artifactId>org.apache.felix.dependencymanager</artifactId>
Pierre De Ropd139f7c2014-07-13 15:16:32 +000046 <version>3.2.1-SNAPSHOT</version>
Marcel Offermans89c60cc2011-04-27 10:14:59 +000047 </dependency>
48 <dependency>
49 <groupId>org.osgi</groupId>
50 <artifactId>org.osgi.core</artifactId>
51 <version>${osgi.version}</version>
52 </dependency>
53 <dependency>
54 <groupId>org.osgi</groupId>
55 <artifactId>org.osgi.compendium</artifactId>
56 <version>${osgi.version}</version>
57 </dependency>
58 <dependency>
59 <groupId>${pom.groupId}</groupId>
Marcel Offermans89c60cc2011-04-27 10:14:59 +000060 <artifactId>org.apache.felix.gogo.runtime</artifactId>
Pierre De Rop1f35b822013-12-14 07:11:27 +000061 <version>0.10.0</version>
Marcel Offermans89c60cc2011-04-27 10:14:59 +000062 </dependency>
Pierre De Ropcec9c3e2013-12-14 07:40:09 +000063 <dependency>
64 <groupId>org.mockito</groupId>
65 <artifactId>mockito-all</artifactId>
66 <version>1.9.5</version>
67 <scope>test</scope>
68 </dependency>
Marcel Offermans89c60cc2011-04-27 10:14:59 +000069 </dependencies>
70 <build>
Marcel Offermans9dec17b2011-04-29 15:40:23 +000071 <resources>
72 <resource>
73 <directory>.</directory>
74 <targetPath>META-INF</targetPath>
75 <includes>
76 <include>LICENSE*</include>
77 <include>NOTICE*</include>
78 <include>DEPENDENCIES*</include>
Marcel Offermans5f8fb372011-05-01 10:57:57 +000079 <include>*.txt</include>
Marcel Offermans9dec17b2011-04-29 15:40:23 +000080 </includes>
81 </resource>
82 </resources>
Marcel Offermans89c60cc2011-04-27 10:14:59 +000083 <pluginManagement>
84 <plugins>
85 <plugin>
86 <groupId>org.apache.felix</groupId>
87 <artifactId>maven-bundle-plugin</artifactId>
Pierre De Rop37ef6512014-07-13 12:05:06 +000088 <version>2.3.4</version>
Marcel Offermans89c60cc2011-04-27 10:14:59 +000089 <extensions>true</extensions>
90 </plugin>
91 </plugins>
92 </pluginManagement>
93 <plugins>
94 <plugin>
95 <groupId>org.apache.maven.plugins</groupId>
96 <artifactId>maven-compiler-plugin</artifactId>
97 <configuration>
Pierre De Rop1f35b822013-12-14 07:11:27 +000098 <source>1.5</source>
99 <target>1.5</target>
Marcel Offermans89c60cc2011-04-27 10:14:59 +0000100 </configuration>
101 </plugin>
102 <plugin>
103 <groupId>org.apache.felix</groupId>
104 <artifactId>maven-bundle-plugin</artifactId>
105 <configuration>
106 <instructions>
107 <Bundle-SymbolicName>org.apache.felix.dependencymanager.shell</Bundle-SymbolicName>
108 <Bundle-Activator>org.apache.felix.dm.shell.Activator</Bundle-Activator>
109 <Bundle-Name>Apache Felix Dependency Manager Shell</Bundle-Name>
110 <Bundle-Description>Shell command for the dependency manager.</Bundle-Description>
111 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
Marcel Offermans6e894182011-04-30 08:43:18 +0000112 <Export-Package />
Marcel Offermans89c60cc2011-04-27 10:14:59 +0000113 <Private-Package>org.apache.felix.dm.shell</Private-Package>
Pierre De Rop1f35b822013-12-14 07:11:27 +0000114 <Import-Package>org.apache.felix.service.command;status=provisional, *</Import-Package>
Marcel Offermans89c60cc2011-04-27 10:14:59 +0000115 </instructions>
116 </configuration>
117 </plugin>
118 </plugins>
119 </build>
Marcel Offermansb20ea202008-09-18 21:18:03 +0000120</project>