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 | ce2c5eb | 2009-09-02 07:52:12 +0000 | [diff] [blame] | 19 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 20 | 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] | 21 | <parent> |
| 22 | <groupId>org.apache.felix.gogo</groupId> |
| 23 | <artifactId>gogo</artifactId> |
Guillaume Nodet | ce2c5eb | 2009-09-02 07:52:12 +0000 | [diff] [blame] | 24 | <version>0.1.0-SNAPSHOT</version> |
Guillaume Nodet | 907d4b1 | 2009-06-30 20:52:04 +0000 | [diff] [blame] | 25 | </parent> |
| 26 | <modelVersion>4.0.0</modelVersion> |
| 27 | <packaging>bundle</packaging> |
| 28 | <name>Apache Felix Gogo Shell Launcher</name> |
| 29 | <artifactId>org.apache.felix.gogo.launcher</artifactId> |
Guillaume Nodet | ce2c5eb | 2009-09-02 07:52:12 +0000 | [diff] [blame] | 30 | <version>0.1.0-SNAPSHOT</version> |
Guillaume Nodet | 907d4b1 | 2009-06-30 20:52:04 +0000 | [diff] [blame] | 31 | <dependencies> |
| 32 | <dependency> |
| 33 | <groupId>org.apache.felix</groupId> |
Richard S. Hall | 0b118e6 | 2009-07-03 19:42:04 +0000 | [diff] [blame] | 34 | <artifactId>org.apache.felix.framework</artifactId> |
| 35 | <version>1.8.1</version> |
Guillaume Nodet | 907d4b1 | 2009-06-30 20:52:04 +0000 | [diff] [blame] | 36 | <scope>provided</scope> |
| 37 | </dependency> |
| 38 | <dependency> |
| 39 | <groupId>org.apache.felix.gogo</groupId> |
| 40 | <artifactId>org.apache.felix.gogo.console</artifactId> |
| 41 | </dependency> |
| 42 | <dependency> |
| 43 | <groupId>junit</groupId> |
| 44 | <artifactId>junit</artifactId> |
| 45 | <scope>test</scope> |
| 46 | </dependency> |
| 47 | </dependencies> |
| 48 | <build> |
| 49 | <plugins> |
| 50 | <plugin> |
| 51 | <groupId>org.apache.felix</groupId> |
| 52 | <artifactId>maven-bundle-plugin</artifactId> |
| 53 | <version>2.0.0</version> |
| 54 | <extensions>true</extensions> |
| 55 | <configuration> |
| 56 | <instructions> |
| 57 | <Export-Package> |
Guillaume Nodet | 46c90a9 | 2009-09-02 06:46:25 +0000 | [diff] [blame] | 58 | org.osgi.service.command; version=${project.version}, |
| 59 | org.osgi.service.threadio; version=${project.version}, |
Guillaume Nodet | 907d4b1 | 2009-06-30 20:52:04 +0000 | [diff] [blame] | 60 | org.apache.felix.gogo.commands; version=${project.version} |
| 61 | </Export-Package> |
| 62 | <Import-Package> |
| 63 | org.osgi.service.component*; resolution:=optional, |
| 64 | org.osgi.service.log*; resolution:=optional, |
| 65 | org.osgi.service.packageadmin*; resolution:=optional, |
| 66 | org.osgi.service.startlevel*; resolution:=optional, |
| 67 | * |
| 68 | </Import-Package> |
| 69 | <Private-Package>org.apache.felix.gogo.*</Private-Package> |
| 70 | <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> |
| 71 | <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor> |
| 72 | <Bundle-Activator>org.apache.felix.gogo.runtime.Activator</Bundle-Activator> |
Guillaume Nodet | 46c90a9 | 2009-09-02 06:46:25 +0000 | [diff] [blame] | 73 | <_versionpolicy>[$(version;==;$(@)),$(version;+;$(@)))</_versionpolicy> |
| 74 | <_removeheaders>Private-Package,Ignore-Package</_removeheaders> |
Guillaume Nodet | 907d4b1 | 2009-06-30 20:52:04 +0000 | [diff] [blame] | 75 | </instructions> |
| 76 | </configuration> |
| 77 | </plugin> |
| 78 | <plugin> |
| 79 | <groupId>org.codehaus.mojo</groupId> |
| 80 | <artifactId>rat-maven-plugin</artifactId> |
| 81 | <configuration> |
| 82 | <excludeSubProjects>false</excludeSubProjects> |
| 83 | <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes> |
| 84 | <useMavenDefaultExcludes>true</useMavenDefaultExcludes> |
| 85 | <excludes> |
| 86 | <param>doc/*</param> |
| 87 | <param>maven-eclipse.xml</param> |
| 88 | <param>.checkstyle</param> |
| 89 | <param>.externalToolBuilders/*</param> |
| 90 | </excludes> |
| 91 | </configuration> |
| 92 | </plugin> |
| 93 | <plugin> |
| 94 | <artifactId>maven-compiler-plugin</artifactId> |
| 95 | <configuration> |
| 96 | <source>1.5</source> |
| 97 | <target>1.5</target> |
| 98 | </configuration> |
| 99 | </plugin> |
| 100 | </plugins> |
| 101 | </build> |
| 102 | </project> |