Richard S. Hall | 395d6af | 2010-05-05 15:13:43 +0000 | [diff] [blame] | 1 | <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. Hall | cd909ea | 2010-05-24 19:28:50 +0000 | [diff] [blame] | 23 | <groupId>org.apache.felix</groupId> |
| 24 | <artifactId>gogo-parent</artifactId> |
A. J. David Bosschaert | 86703f5 | 2014-06-17 10:12:16 +0000 | [diff] [blame] | 25 | <version>0.6.0</version> |
Karl Pauls | 14f14db | 2010-06-06 20:39:11 +0000 | [diff] [blame] | 26 | <relativePath>../gogo-parent/pom.xml</relativePath> |
Richard S. Hall | 395d6af | 2010-05-05 15:13:43 +0000 | [diff] [blame] | 27 | </parent> |
| 28 | |
Richard S. Hall | cd909ea | 2010-05-24 19:28:50 +0000 | [diff] [blame] | 29 | <artifactId>org.apache.felix.gogo.command</artifactId> |
Richard S. Hall | 395d6af | 2010-05-05 15:13:43 +0000 | [diff] [blame] | 30 | <packaging>bundle</packaging> |
A. J. David Bosschaert | f1d0a1c | 2014-06-17 10:17:24 +0000 | [diff] [blame] | 31 | <version>0.15.0-SNAPSHOT</version> |
Richard S. Hall | cd909ea | 2010-05-24 19:28:50 +0000 | [diff] [blame] | 32 | <name>Apache Felix Gogo Command</name> |
Richard S. Hall | 395d6af | 2010-05-05 15:13:43 +0000 | [diff] [blame] | 33 | |
| 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. Hall | 4bc4041 | 2014-03-26 14:42:08 +0000 | [diff] [blame] | 42 | <version>4.3.1</version> |
Richard S. Hall | 395d6af | 2010-05-05 15:13:43 +0000 | [diff] [blame] | 43 | </dependency> |
| 44 | <dependency> |
Richard S. Hall | da5c97c | 2010-05-06 20:13:58 +0000 | [diff] [blame] | 45 | <groupId>org.osgi</groupId> |
| 46 | <artifactId>org.osgi.compendium</artifactId> |
| 47 | <version>4.0.0</version> |
| 48 | </dependency> |
| 49 | <dependency> |
Richard S. Hall | cd909ea | 2010-05-24 19:28:50 +0000 | [diff] [blame] | 50 | <groupId>org.apache.felix</groupId> |
Richard S. Hall | 395d6af | 2010-05-05 15:13:43 +0000 | [diff] [blame] | 51 | <artifactId>org.apache.felix.gogo.runtime</artifactId> |
Richard S. Hall | 5dfc9ad | 2011-06-16 15:47:23 +0000 | [diff] [blame] | 52 | <version>0.10.0</version> |
Richard S. Hall | 395d6af | 2010-05-05 15:13:43 +0000 | [diff] [blame] | 53 | </dependency> |
Richard S. Hall | 616f5a5 | 2010-05-07 21:06:57 +0000 | [diff] [blame] | 54 | <dependency> |
| 55 | <groupId>org.apache.felix</groupId> |
| 56 | <artifactId>org.apache.felix.bundlerepository</artifactId> |
| 57 | <version>1.6.0</version> |
| 58 | </dependency> |
Richard S. Hall | 395d6af | 2010-05-05 15:13:43 +0000 | [diff] [blame] | 59 | </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. Hall | 689e823 | 2011-08-23 15:36:39 +0000 | [diff] [blame] | 75 | <version>2.3.5</version> |
Richard S. Hall | 395d6af | 2010-05-05 15:13:43 +0000 | [diff] [blame] | 76 | |
| 77 | <extensions>true</extensions> |
| 78 | <configuration> |
| 79 | <instructions> |
Richard S. Hall | da5c97c | 2010-05-06 20:13:58 +0000 | [diff] [blame] | 80 | <Export-Package>org.osgi.service.log</Export-Package> |
Richard S. Hall | 395d6af | 2010-05-05 15:13:43 +0000 | [diff] [blame] | 81 | <Bundle-SymbolicName>${artifactId}</Bundle-SymbolicName> |
| 82 | <Private-Package>${pom.artifactId}</Private-Package> |
Richard S. Hall | cd909ea | 2010-05-24 19:28:50 +0000 | [diff] [blame] | 83 | <Bundle-Activator>${pom.artifactId}.Activator</Bundle-Activator> |
Richard S. Hall | 689e823 | 2011-08-23 15:36:39 +0000 | [diff] [blame] | 84 | <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. Hall | 2a4d8f5 | 2010-05-28 18:40:02 +0000 | [diff] [blame] | 85 | <Include-Resource>{maven-resources},META-INF/LICENSE=LICENSE,META-INF/NOTICE=NOTICE,META-INF/DEPENDENCIES=DEPENDENCIES</Include-Resource> |
Richard S. Hall | 616f5a5 | 2010-05-07 21:06:57 +0000 | [diff] [blame] | 86 | <DynamicImport-Package>org.apache.felix.bundlerepository, org.apache.felix.bundlerepository.*</DynamicImport-Package> |
Richard S. Hall | 395d6af | 2010-05-05 15:13:43 +0000 | [diff] [blame] | 87 | </instructions> |
| 88 | </configuration> |
| 89 | </plugin> |
| 90 | </plugins> |
| 91 | </build> |
Richard S. Hall | 395d6af | 2010-05-05 15:13:43 +0000 | [diff] [blame] | 92 | </project> |