blob: e61f4b987a5ee91adfbc64a24414d6c2c2de6163 [file] [log] [blame]
Richard S. Hall395d6af2010-05-05 15:13:43 +00001<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">
2
3 <!--
4 Licensed to the Apache Software Foundation (ASF) under one or more
5 contributor license agreements. See the NOTICE file distributed with
6 this work for additional information regarding copyright ownership.
7 The ASF licenses this file to You under the Apache License, Version 2.0
8 (the "License"); you may not use this file except in compliance with
9 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, software
14 distributed under the License is distributed on an "AS IS" BASIS,
15 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 See the License for the specific language governing permissions and
17 limitations under the License.
18 -->
19
20 <modelVersion>4.0.0</modelVersion>
21
22 <parent>
Richard S. Hallcd909ea2010-05-24 19:28:50 +000023 <groupId>org.apache.felix</groupId>
24 <artifactId>gogo-parent</artifactId>
A. J. David Bosschaert86703f52014-06-17 10:12:16 +000025 <version>0.6.0</version>
Karl Pauls14f14db2010-06-06 20:39:11 +000026 <relativePath>../gogo-parent/pom.xml</relativePath>
Richard S. Hall395d6af2010-05-05 15:13:43 +000027 </parent>
28
Richard S. Hallcd909ea2010-05-24 19:28:50 +000029 <artifactId>org.apache.felix.gogo.command</artifactId>
Richard S. Hall395d6af2010-05-05 15:13:43 +000030 <packaging>bundle</packaging>
A. J. David Bosschaertf1d0a1c2014-06-17 10:17:24 +000031 <version>0.15.0-SNAPSHOT</version>
Richard S. Hallcd909ea2010-05-24 19:28:50 +000032 <name>Apache Felix Gogo Command</name>
Richard S. Hall395d6af2010-05-05 15:13:43 +000033
34 <description>
35 Provides basic shell commands for Gogo.
36 </description>
37
38 <dependencies>
39 <dependency>
40 <groupId>org.osgi</groupId>
41 <artifactId>org.osgi.core</artifactId>
Richard S. Hall4bc40412014-03-26 14:42:08 +000042 <version>4.3.1</version>
Richard S. Hall395d6af2010-05-05 15:13:43 +000043 </dependency>
44 <dependency>
Richard S. Hallda5c97c2010-05-06 20:13:58 +000045 <groupId>org.osgi</groupId>
46 <artifactId>org.osgi.compendium</artifactId>
47 <version>4.0.0</version>
48 </dependency>
49 <dependency>
Richard S. Hallcd909ea2010-05-24 19:28:50 +000050 <groupId>org.apache.felix</groupId>
Richard S. Hall395d6af2010-05-05 15:13:43 +000051 <artifactId>org.apache.felix.gogo.runtime</artifactId>
Richard S. Hall5dfc9ad2011-06-16 15:47:23 +000052 <version>0.10.0</version>
Richard S. Hall395d6af2010-05-05 15:13:43 +000053 </dependency>
Richard S. Hall616f5a52010-05-07 21:06:57 +000054 <dependency>
55 <groupId>org.apache.felix</groupId>
56 <artifactId>org.apache.felix.bundlerepository</artifactId>
57 <version>1.6.0</version>
58 </dependency>
Richard S. Hall395d6af2010-05-05 15:13:43 +000059 </dependencies>
60
61 <build>
62 <plugins>
63 <plugin>
64 <groupId>org.apache.maven.plugins</groupId>
65 <artifactId>maven-compiler-plugin</artifactId>
66 <configuration>
67 <target>1.5</target>
68 <source>1.5</source>
69 </configuration>
70 </plugin>
71
72 <plugin>
73 <groupId>org.apache.felix</groupId>
74 <artifactId>maven-bundle-plugin</artifactId>
Richard S. Hall689e8232011-08-23 15:36:39 +000075 <version>2.3.5</version>
Richard S. Hall395d6af2010-05-05 15:13:43 +000076
77 <extensions>true</extensions>
78 <configuration>
79 <instructions>
Richard S. Hallda5c97c2010-05-06 20:13:58 +000080 <Export-Package>org.osgi.service.log</Export-Package>
Richard S. Hall395d6af2010-05-05 15:13:43 +000081 <Bundle-SymbolicName>${artifactId}</Bundle-SymbolicName>
82 <Private-Package>${pom.artifactId}</Private-Package>
Richard S. Hallcd909ea2010-05-24 19:28:50 +000083 <Bundle-Activator>${pom.artifactId}.Activator</Bundle-Activator>
Richard S. Hall689e8232011-08-23 15:36:39 +000084 <Import-Package>org.apache.felix.service.command; status="provisional", org.osgi.framework; version="[1.5,2.0)", org.osgi.framework.wiring; resolution:=optional, *</Import-Package>
Richard S. Hall2a4d8f52010-05-28 18:40:02 +000085 <Include-Resource>{maven-resources},META-INF/LICENSE=LICENSE,META-INF/NOTICE=NOTICE,META-INF/DEPENDENCIES=DEPENDENCIES</Include-Resource>
Richard S. Hall616f5a52010-05-07 21:06:57 +000086 <DynamicImport-Package>org.apache.felix.bundlerepository, org.apache.felix.bundlerepository.*</DynamicImport-Package>
Richard S. Hall395d6af2010-05-05 15:13:43 +000087 </instructions>
88 </configuration>
89 </plugin>
90 </plugins>
91 </build>
Richard S. Hall395d6af2010-05-05 15:13:43 +000092</project>