blob: 9ba034ab624ce6e51591a4e6fe26a6fe2e0f81bf [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">
Richard S. Hall7bf7a4d2010-08-03 13:25:34 +000020 <parent>
21 <groupId>org.apache.felix</groupId>
22 <artifactId>felix-parent</artifactId>
23 <version>1.2.1</version>
24 <relativePath>../pom/pom.xml</relativePath>
25 </parent>
Clement Escoffier81466522009-05-03 08:15:51 +000026
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 Escoffier81466522009-05-03 08:15:51 +000031 <url>http://felix.apache.org/site/apache-felix-file-install.html</url>
Richard S. Hall34701482010-08-03 14:03:21 +000032 <version>3.0.3-SNAPSHOT</version>
Richard S. Hallb63426f2008-03-05 20:03:55 +000033 <artifactId>org.apache.felix.fileinstall</artifactId>
34 <dependencies>
35 <dependency>
Guillaume Nodet93c943e2009-12-16 09:28:31 +000036 <groupId>org.osgi</groupId>
Richard S. Hallb63426f2008-03-05 20:03:55 +000037 <artifactId>org.osgi.core</artifactId>
Guillaume Nodet7e690952009-12-16 12:16:23 +000038 <version>4.1.0</version>
Richard S. Hallb63426f2008-03-05 20:03:55 +000039 </dependency>
40 <dependency>
Guillaume Nodet93c943e2009-12-16 09:28:31 +000041 <groupId>org.osgi</groupId>
Richard S. Hallb63426f2008-03-05 20:03:55 +000042 <artifactId>org.osgi.compendium</artifactId>
Guillaume Nodet7e690952009-12-16 12:16:23 +000043 <version>4.1.0</version>
Richard S. Hallb63426f2008-03-05 20:03:55 +000044 </dependency>
Carsten Ziegelerc6e24392010-08-06 14:33:43 +000045 <dependency>
46 <groupId>org.apache.felix</groupId>
47 <artifactId>org.apache.felix.configadmin</artifactId>
48 <version>1.2.4</version>
49 <scope>provided</scope>
50 </dependency>
Richard S. Hallb63426f2008-03-05 20:03:55 +000051 </dependencies>
52 <build>
53 <plugins>
54 <plugin>
55 <groupId>org.apache.felix</groupId>
56 <artifactId>maven-bundle-plugin</artifactId>
Guillaume Nodet472d23a2009-09-03 13:39:34 +000057 <version>2.0.0</version>
Richard S. Hallb63426f2008-03-05 20:03:55 +000058 <extensions>true</extensions>
59 <configuration>
60 <instructions>
Guillaume Nodet472d23a2009-09-03 13:39:34 +000061 <Export-Package>
Guillaume Nodeta2861572009-10-14 13:00:51 +000062 org.apache.felix.fileinstall;version=${project.version}
Guillaume Nodet472d23a2009-09-03 13:39:34 +000063 </Export-Package>
Stuart McCullocha96eeef2009-09-03 17:22:01 +000064 <Private-Package>
65 org.apache.felix.fileinstall.internal
66 </Private-Package>
Guillaume Nodet472d23a2009-09-03 13:39:34 +000067 <Import-Package>
68 org.osgi.service.log;resolution:=optional,
Guillaume Nodeta2861572009-10-14 13:00:51 +000069 org.osgi.service.cm;resolution:=optional,
Guillaume Nodet472d23a2009-09-03 13:39:34 +000070 *
71 </Import-Package>
Richard S. Hall7bf7a4d2010-08-03 13:25:34 +000072 <Include-Resource>src/main/resources,META-INF/LICENSE=LICENSE,META-INF/NOTICE=NOTICE,META-INF/DEPENDENCIES=DEPENDENCIES</Include-Resource>
Guillaume Nodet67bfa5f2009-09-03 15:39:17 +000073 <Bundle-Activator>org.apache.felix.fileinstall.internal.FileInstall</Bundle-Activator>
Richard S. Hallb63426f2008-03-05 20:03:55 +000074 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
Carsten Ziegelercf6e51b2008-04-17 06:33:59 +000075 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
Guillaume Nodet472d23a2009-09-03 13:39:34 +000076 <_versionpolicy>[$(version;==;$(@)),$(version;+;$(@)))</_versionpolicy>
Carsten Ziegelerc6e24392010-08-06 14:33:43 +000077 <Embed-Dependency>
78 org.apache.felix.configadmin;inline="org/apache/felix/cm/file/ConfigurationHandler.*"
79 </Embed-Dependency>
Richard S. Hallb63426f2008-03-05 20:03:55 +000080 </instructions>
81 </configuration>
82 </plugin>
Richard S. Hall7bf7a4d2010-08-03 13:25:34 +000083 <plugin>
84 <groupId>org.codehaus.mojo</groupId>
85 <artifactId>rat-maven-plugin</artifactId>
86 <configuration>
87 <excludeSubProjects>false</excludeSubProjects>
88 <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
89 <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
90 <excludes>
91 <param>doc/*</param>
92 <param>maven-eclipse.xml</param>
93 <param>.checkstyle</param>
94 <param>.externalToolBuilders/*</param>
95 </excludes>
96 </configuration>
97 </plugin>
Richard S. Hallb63426f2008-03-05 20:03:55 +000098 </plugins>
99 </build>
Richard S. Hallb63426f2008-03-05 20:03:55 +0000100</project>