Guillaume Nodet | 907d4b1 | 2009-06-30 20:52:04 +0000 | [diff] [blame] | 1 | <!-- |
| 2 | Licensed to the Apache Software Foundation (ASF) under one |
| 3 | or more contributor license agreements. See the NOTICE file |
| 4 | distributed with this work for additional information |
| 5 | regarding copyright ownership. The ASF licenses this file |
| 6 | to you under the Apache License, Version 2.0 (the |
| 7 | "License"); you may not use this file except in compliance |
| 8 | with the License. You may obtain a copy of the License at |
| 9 | |
| 10 | http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | |
| 12 | Unless required by applicable law or agreed to in writing, |
| 13 | software distributed under the License is distributed on an |
| 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 15 | KIND, either express or implied. See the License for the |
| 16 | specific language governing permissions and limitations |
| 17 | under the License. |
| 18 | --> |
Guillaume Nodet | cf6fe21 | 2009-09-08 20:19:54 +0000 | [diff] [blame] | 19 | <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"> |
Guillaume Nodet | 907d4b1 | 2009-06-30 20:52:04 +0000 | [diff] [blame] | 20 | <parent> |
Richard S. Hall | df4169f | 2010-05-24 19:03:10 +0000 | [diff] [blame] | 21 | <groupId>org.apache.felix</groupId> |
| 22 | <artifactId>gogo-parent</artifactId> |
Karl Pauls | 2decfb8 | 2010-09-22 20:14:17 +0000 | [diff] [blame] | 23 | <version>0.6.0</version> |
Karl Pauls | 14f14db | 2010-06-06 20:39:11 +0000 | [diff] [blame] | 24 | <relativePath>../gogo-parent/pom.xml</relativePath> |
Guillaume Nodet | 907d4b1 | 2009-06-30 20:52:04 +0000 | [diff] [blame] | 25 | </parent> |
| 26 | <modelVersion>4.0.0</modelVersion> |
| 27 | <packaging>bundle</packaging> |
Derek Baum | bd5b608 | 2010-05-13 17:32:34 +0000 | [diff] [blame] | 28 | <name>Apache Felix Gogo Shell</name> |
| 29 | <artifactId>org.apache.felix.gogo.shell</artifactId> |
Richard S. Hall | a201ae5 | 2011-06-16 15:50:18 +0000 | [diff] [blame] | 30 | <version>0.11.0-SNAPSHOT</version> |
Guillaume Nodet | 907d4b1 | 2009-06-30 20:52:04 +0000 | [diff] [blame] | 31 | <dependencies> |
| 32 | <dependency> |
Richard S. Hall | df4169f | 2010-05-24 19:03:10 +0000 | [diff] [blame] | 33 | <groupId>org.osgi</groupId> |
Guillaume Nodet | 907d4b1 | 2009-06-30 20:52:04 +0000 | [diff] [blame] | 34 | <artifactId>org.osgi.core</artifactId> |
Richard S. Hall | df4169f | 2010-05-24 19:03:10 +0000 | [diff] [blame] | 35 | <version>4.2.0</version> |
| 36 | <scope>provided</scope> |
| 37 | </dependency> |
| 38 | <dependency> |
| 39 | <groupId>org.osgi</groupId> |
| 40 | <artifactId>org.osgi.compendium</artifactId> |
| 41 | <version>4.0.0</version> |
Guillaume Nodet | 907d4b1 | 2009-06-30 20:52:04 +0000 | [diff] [blame] | 42 | <scope>provided</scope> |
| 43 | </dependency> |
| 44 | <dependency> |
| 45 | <groupId>org.apache.felix</groupId> |
Guillaume Nodet | 907d4b1 | 2009-06-30 20:52:04 +0000 | [diff] [blame] | 46 | <artifactId>org.apache.felix.gogo.runtime</artifactId> |
Richard S. Hall | 5dfc9ad | 2011-06-16 15:47:23 +0000 | [diff] [blame] | 47 | <version>0.10.0</version> |
Guillaume Nodet | 907d4b1 | 2009-06-30 20:52:04 +0000 | [diff] [blame] | 48 | </dependency> |
| 49 | </dependencies> |
| 50 | <build> |
| 51 | <plugins> |
| 52 | <plugin> |
| 53 | <groupId>org.apache.felix</groupId> |
| 54 | <artifactId>maven-bundle-plugin</artifactId> |
Guillaume Nodet | 907d4b1 | 2009-06-30 20:52:04 +0000 | [diff] [blame] | 55 | <extensions>true</extensions> |
| 56 | <configuration> |
| 57 | <instructions> |
| 58 | <Export-Package> |
| 59 | </Export-Package> |
| 60 | <Import-Package> |
Richard S. Hall | 4c24859 | 2010-09-20 19:25:21 +0000 | [diff] [blame] | 61 | org.apache.felix.service.command; status="provisional", |
Guillaume Nodet | 907d4b1 | 2009-06-30 20:52:04 +0000 | [diff] [blame] | 62 | * |
| 63 | </Import-Package> |
Derek Baum | bd5b608 | 2010-05-13 17:32:34 +0000 | [diff] [blame] | 64 | <Private-Package> |
| 65 | org.apache.felix.gogo.shell, |
| 66 | org.apache.felix.gogo.options |
| 67 | </Private-Package> |
Guillaume Nodet | 907d4b1 | 2009-06-30 20:52:04 +0000 | [diff] [blame] | 68 | <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> |
| 69 | <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor> |
Derek Baum | bd5b608 | 2010-05-13 17:32:34 +0000 | [diff] [blame] | 70 | <Bundle-Activator>org.apache.felix.gogo.shell.Activator</Bundle-Activator> |
Richard S. Hall | 2a4d8f5 | 2010-05-28 18:40:02 +0000 | [diff] [blame] | 71 | <Include-Resource>{maven-resources},META-INF/LICENSE=LICENSE,META-INF/NOTICE=NOTICE,META-INF/DEPENDENCIES=DEPENDENCIES</Include-Resource> |
Guillaume Nodet | 46c90a9 | 2009-09-02 06:46:25 +0000 | [diff] [blame] | 72 | <_versionpolicy>[$(version;==;$(@)),$(version;+;$(@)))</_versionpolicy> |
Guillaume Nodet | 44d9d02 | 2009-09-08 20:09:15 +0000 | [diff] [blame] | 73 | <_removeheaders>Private-Package,Ignore-Package,Include-Resource</_removeheaders> |
Guillaume Nodet | 907d4b1 | 2009-06-30 20:52:04 +0000 | [diff] [blame] | 74 | </instructions> |
| 75 | </configuration> |
| 76 | </plugin> |
| 77 | <plugin> |
| 78 | <groupId>org.codehaus.mojo</groupId> |
| 79 | <artifactId>rat-maven-plugin</artifactId> |
| 80 | <configuration> |
| 81 | <excludeSubProjects>false</excludeSubProjects> |
| 82 | <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes> |
| 83 | <useMavenDefaultExcludes>true</useMavenDefaultExcludes> |
| 84 | <excludes> |
| 85 | <param>doc/*</param> |
| 86 | <param>maven-eclipse.xml</param> |
| 87 | <param>.checkstyle</param> |
| 88 | <param>.externalToolBuilders/*</param> |
| 89 | </excludes> |
| 90 | </configuration> |
| 91 | </plugin> |
| 92 | <plugin> |
| 93 | <artifactId>maven-compiler-plugin</artifactId> |
| 94 | <configuration> |
| 95 | <source>1.5</source> |
| 96 | <target>1.5</target> |
| 97 | </configuration> |
| 98 | </plugin> |
| 99 | </plugins> |
| 100 | </build> |
Guillaume Nodet | 907d4b1 | 2009-06-30 20:52:04 +0000 | [diff] [blame] | 101 | </project> |