Richard S. Hall | b63426f | 2008-03-05 20:03:55 +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 | --> |
| 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"> |
Clement Escoffier | 8146652 | 2009-05-03 08:15:51 +0000 | [diff] [blame] | 20 | <parent> |
| 21 | <groupId>org.apache.felix</groupId> |
| 22 | <artifactId>felix-parent</artifactId> |
| 23 | <version>1.2.0</version> |
| 24 | <relativePath>../../pom/pom.xml</relativePath> |
| 25 | </parent> |
| 26 | |
Richard S. Hall | b63426f | 2008-03-05 20:03:55 +0000 | [diff] [blame] | 27 | <modelVersion>4.0.0</modelVersion> |
| 28 | <packaging>bundle</packaging> |
| 29 | <name>Apache Felix File Install</name> |
| 30 | <description>A utility to automatically install bundles from a directory.</description> |
Clement Escoffier | 8146652 | 2009-05-03 08:15:51 +0000 | [diff] [blame] | 31 | <url>http://felix.apache.org/site/apache-felix-file-install.html</url> |
Karl Pauls | 64192ef | 2009-06-22 20:33:16 +0000 | [diff] [blame] | 32 | <version>1.3.0-SNAPSHOT</version> |
Richard S. Hall | b63426f | 2008-03-05 20:03:55 +0000 | [diff] [blame] | 33 | <artifactId>org.apache.felix.fileinstall</artifactId> |
| 34 | <dependencies> |
| 35 | <dependency> |
| 36 | <groupId>${pom.groupId}</groupId> |
| 37 | <artifactId>org.osgi.core</artifactId> |
| 38 | <version>1.0.0</version> |
| 39 | </dependency> |
| 40 | <dependency> |
| 41 | <groupId>${pom.groupId}</groupId> |
| 42 | <artifactId>org.osgi.compendium</artifactId> |
| 43 | <version>1.0.0</version> |
| 44 | </dependency> |
| 45 | </dependencies> |
| 46 | <build> |
| 47 | <plugins> |
| 48 | <plugin> |
| 49 | <groupId>org.apache.felix</groupId> |
| 50 | <artifactId>maven-bundle-plugin</artifactId> |
| 51 | <version>1.4.0</version> |
| 52 | <extensions>true</extensions> |
| 53 | <configuration> |
| 54 | <instructions> |
Richard S. Hall | 8df625b | 2009-03-25 06:17:44 +0000 | [diff] [blame] | 55 | <Export-Package>org.apache.felix.fileinstall.*,org.osgi.service.cm, org.osgi.service.log</Export-Package> |
Richard S. Hall | b63426f | 2008-03-05 20:03:55 +0000 | [diff] [blame] | 56 | <Bundle-Activator>org.apache.felix.fileinstall.FileInstall</Bundle-Activator> |
| 57 | <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> |
Carsten Ziegeler | cf6e51b | 2008-04-17 06:33:59 +0000 | [diff] [blame] | 58 | <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor> |
Richard S. Hall | b63426f | 2008-03-05 20:03:55 +0000 | [diff] [blame] | 59 | </instructions> |
| 60 | </configuration> |
| 61 | </plugin> |
Clement Escoffier | 5ba1dba | 2009-03-31 07:24:28 +0000 | [diff] [blame] | 62 | <plugin> |
| 63 | <groupId>org.codehaus.mojo</groupId> |
| 64 | <artifactId>rat-maven-plugin</artifactId> |
| 65 | <configuration> |
| 66 | <excludeSubProjects>false</excludeSubProjects> |
| 67 | <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes> |
| 68 | <useMavenDefaultExcludes>true</useMavenDefaultExcludes> |
| 69 | <excludes> |
| 70 | <param>doc/*</param> |
| 71 | <param>maven-eclipse.xml</param> |
| 72 | <param>.checkstyle</param> |
| 73 | <param>.externalToolBuilders/*</param> |
| 74 | </excludes> |
| 75 | </configuration> |
| 76 | </plugin> |
Richard S. Hall | b63426f | 2008-03-05 20:03:55 +0000 | [diff] [blame] | 77 | </plugins> |
| 78 | </build> |
Richard S. Hall | b63426f | 2008-03-05 20:03:55 +0000 | [diff] [blame] | 79 | </project> |