blob: 40cbc6b6887af69285a56a56fa0825e3c21771a7 [file] [log] [blame]
Richard S. Hallb63426f2008-03-05 20:03:55 +00001<!--
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 Escoffier19ba2f22009-05-03 08:16:01 +000020 <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. Hallb63426f2008-03-05 20:03:55 +000027 <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 Escoffier19ba2f22009-05-03 08:16:01 +000031 <url>http://felix.apache.org/site/apache-felix-file-install.html</url>
Guillaume Nodetb94ece12009-10-22 08:37:59 +000032 <version>2.0.5-SNAPSHOT</version>
Richard S. Hallb63426f2008-03-05 20:03:55 +000033 <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>
Guillaume Nodeta4afb792009-09-03 13:39:34 +000051 <version>2.0.0</version>
Richard S. Hallb63426f2008-03-05 20:03:55 +000052 <extensions>true</extensions>
53 <configuration>
54 <instructions>
Guillaume Nodeta4afb792009-09-03 13:39:34 +000055 <Export-Package>
Guillaume Nodetd567a242009-10-14 13:00:51 +000056 org.apache.felix.fileinstall;version=${project.version}
Guillaume Nodeta4afb792009-09-03 13:39:34 +000057 </Export-Package>
Stuart McCullochf3af5892009-09-03 17:22:01 +000058 <Private-Package>
59 org.apache.felix.fileinstall.internal
60 </Private-Package>
Guillaume Nodeta4afb792009-09-03 13:39:34 +000061 <Import-Package>
62 org.osgi.service.log;resolution:=optional,
Guillaume Nodetd567a242009-10-14 13:00:51 +000063 org.osgi.service.cm;resolution:=optional,
Guillaume Nodeta4afb792009-09-03 13:39:34 +000064 *
65 </Import-Package>
Guillaume Nodet32a23242009-09-03 15:39:17 +000066 <Bundle-Activator>org.apache.felix.fileinstall.internal.FileInstall</Bundle-Activator>
Richard S. Hallb63426f2008-03-05 20:03:55 +000067 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
Carsten Ziegeler90f0b9f2008-04-17 06:33:59 +000068 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
Guillaume Nodeta4afb792009-09-03 13:39:34 +000069 <_versionpolicy>[$(version;==;$(@)),$(version;+;$(@)))</_versionpolicy>
Richard S. Hallb63426f2008-03-05 20:03:55 +000070 </instructions>
71 </configuration>
72 </plugin>
Clement Escoffier029070e2009-03-31 07:24:28 +000073 <plugin>
74 <groupId>org.codehaus.mojo</groupId>
75 <artifactId>rat-maven-plugin</artifactId>
76 <configuration>
77 <excludeSubProjects>false</excludeSubProjects>
78 <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
79 <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
80 <excludes>
81 <param>doc/*</param>
82 <param>maven-eclipse.xml</param>
83 <param>.checkstyle</param>
84 <param>.externalToolBuilders/*</param>
85 </excludes>
86 </configuration>
87 </plugin>
Richard S. Hallb63426f2008-03-05 20:03:55 +000088 </plugins>
89 </build>
Richard S. Hallb63426f2008-03-05 20:03:55 +000090</project>