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 | 1837170 | 2010-05-05 17:46:54 +0000 | [diff] [blame] | 23 | <groupId>org.apache.felix.gogo</groupId> |
| 24 | <artifactId>gogo</artifactId> |
| 25 | <version>0.5.0-SNAPSHOT</version> |
Richard S. Hall | 395d6af | 2010-05-05 15:13:43 +0000 | [diff] [blame] | 26 | </parent> |
| 27 | |
| 28 | <artifactId>org.apache.felix.gogo.felixcommands</artifactId> |
| 29 | <packaging>bundle</packaging> |
| 30 | <version>0.9.0-SNAPSHOT</version> |
| 31 | <name>Apache Felix Gogo Basic Commands</name> |
| 32 | |
| 33 | <description> |
| 34 | Provides basic shell commands for Gogo. |
| 35 | </description> |
| 36 | |
| 37 | <dependencies> |
| 38 | <dependency> |
| 39 | <groupId>org.osgi</groupId> |
| 40 | <artifactId>org.osgi.core</artifactId> |
| 41 | <version>4.2.0</version> |
| 42 | </dependency> |
| 43 | <dependency> |
Richard S. Hall | da5c97c | 2010-05-06 20:13:58 +0000 | [diff] [blame] | 44 | <groupId>org.osgi</groupId> |
| 45 | <artifactId>org.osgi.compendium</artifactId> |
| 46 | <version>4.0.0</version> |
| 47 | </dependency> |
| 48 | <dependency> |
Richard S. Hall | 395d6af | 2010-05-05 15:13:43 +0000 | [diff] [blame] | 49 | <groupId>org.apache.felix.gogo</groupId> |
| 50 | <artifactId>org.apache.felix.gogo.runtime</artifactId> |
| 51 | <version>0.5.0-SNAPSHOT</version> |
| 52 | </dependency> |
Richard S. Hall | 616f5a5 | 2010-05-07 21:06:57 +0000 | [diff] [blame] | 53 | <dependency> |
| 54 | <groupId>org.apache.felix</groupId> |
| 55 | <artifactId>org.apache.felix.bundlerepository</artifactId> |
| 56 | <version>1.6.0</version> |
| 57 | </dependency> |
Richard S. Hall | 395d6af | 2010-05-05 15:13:43 +0000 | [diff] [blame] | 58 | </dependencies> |
| 59 | |
| 60 | <build> |
| 61 | <plugins> |
| 62 | <plugin> |
| 63 | <groupId>org.apache.maven.plugins</groupId> |
| 64 | <artifactId>maven-compiler-plugin</artifactId> |
| 65 | <configuration> |
| 66 | <target>1.5</target> |
| 67 | <source>1.5</source> |
| 68 | </configuration> |
| 69 | </plugin> |
| 70 | |
| 71 | <plugin> |
| 72 | <groupId>org.apache.felix</groupId> |
| 73 | <artifactId>maven-bundle-plugin</artifactId> |
| 74 | |
| 75 | <extensions>true</extensions> |
| 76 | <configuration> |
| 77 | <instructions> |
Richard S. Hall | da5c97c | 2010-05-06 20:13:58 +0000 | [diff] [blame] | 78 | <Export-Package>org.osgi.service.log</Export-Package> |
Richard S. Hall | 395d6af | 2010-05-05 15:13:43 +0000 | [diff] [blame] | 79 | <Bundle-SymbolicName>${artifactId}</Bundle-SymbolicName> |
| 80 | <Private-Package>${pom.artifactId}</Private-Package> |
| 81 | <Bundle-Activator>${artifactId}.Activator</Bundle-Activator> |
Richard S. Hall | 616f5a5 | 2010-05-07 21:06:57 +0000 | [diff] [blame] | 82 | <Import-Package>!org.apache.felix.bundlerepository.*, *</Import-Package> |
| 83 | <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] | 84 | </instructions> |
| 85 | </configuration> |
| 86 | </plugin> |
| 87 | </plugins> |
| 88 | </build> |
| 89 | </project> |