blob: b21f022ef7308c336840e082b773cae5b1cc427e [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. Hall46e748d2010-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 Escoffier19ba2f22009-05-03 08:16:01 +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 Escoffier19ba2f22009-05-03 08:16:01 +000031 <url>http://felix.apache.org/site/apache-felix-file-install.html</url>
Guillaume Nodetb96845b2011-02-02 14:09:10 +000032 <version>3.1.11-SNAPSHOT</version>
Richard S. Hallb63426f2008-03-05 20:03:55 +000033 <artifactId>org.apache.felix.fileinstall</artifactId>
34 <dependencies>
35 <dependency>
Guillaume Nodetfb35af12009-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 Nodetf29e3482009-12-16 12:16:23 +000038 <version>4.1.0</version>
Guillaume Nodet98695372012-03-16 08:17:34 +000039 <scope>provided</scope>
Richard S. Hallb63426f2008-03-05 20:03:55 +000040 </dependency>
41 <dependency>
Guillaume Nodetfb35af12009-12-16 09:28:31 +000042 <groupId>org.osgi</groupId>
Richard S. Hallb63426f2008-03-05 20:03:55 +000043 <artifactId>org.osgi.compendium</artifactId>
Guillaume Nodetf29e3482009-12-16 12:16:23 +000044 <version>4.1.0</version>
Guillaume Nodet98695372012-03-16 08:17:34 +000045 <scope>provided</scope>
Richard S. Hallb63426f2008-03-05 20:03:55 +000046 </dependency>
Carsten Ziegeler8c2f61e2010-08-06 14:33:43 +000047 <dependency>
48 <groupId>org.apache.felix</groupId>
49 <artifactId>org.apache.felix.configadmin</artifactId>
Guillaume Nodet213efef2010-10-25 20:19:04 +000050 <version>1.2.8</version>
51 <scope>provided</scope>
52 </dependency>
53 <dependency>
54 <groupId>org.apache.felix</groupId>
55 <artifactId>org.apache.felix.utils</artifactId>
Guillaume Nodetea713b22010-11-03 12:59:53 +000056 <version>1.1.0</version>
Carsten Ziegeler8c2f61e2010-08-06 14:33:43 +000057 <scope>provided</scope>
58 </dependency>
Richard S. Hallb63426f2008-03-05 20:03:55 +000059 </dependencies>
60 <build>
61 <plugins>
62 <plugin>
63 <groupId>org.apache.felix</groupId>
64 <artifactId>maven-bundle-plugin</artifactId>
Guillaume Nodet213efef2010-10-25 20:19:04 +000065 <version>2.1.0</version>
Richard S. Hallb63426f2008-03-05 20:03:55 +000066 <extensions>true</extensions>
67 <configuration>
68 <instructions>
Guillaume Nodeta4afb792009-09-03 13:39:34 +000069 <Export-Package>
Guillaume Nodetd567a242009-10-14 13:00:51 +000070 org.apache.felix.fileinstall;version=${project.version}
Guillaume Nodeta4afb792009-09-03 13:39:34 +000071 </Export-Package>
Stuart McCullochf3af5892009-09-03 17:22:01 +000072 <Private-Package>
Guillaume Nodet213efef2010-10-25 20:19:04 +000073 org.apache.felix.fileinstall.internal,
Guillaume Nodeta6a78f12012-03-16 14:56:39 +000074 org.apache.felix.utils.manifest,
Guillaume Nodet213efef2010-10-25 20:19:04 +000075 org.apache.felix.utils.properties,
Guillaume Nodeta6a78f12012-03-16 14:56:39 +000076 org.apache.felix.utils.version,
Stuart McCullochf3af5892009-09-03 17:22:01 +000077 </Private-Package>
Guillaume Nodeta4afb792009-09-03 13:39:34 +000078 <Import-Package>
79 org.osgi.service.log;resolution:=optional,
Guillaume Nodetd567a242009-10-14 13:00:51 +000080 org.osgi.service.cm;resolution:=optional,
Guillaume Nodeta4afb792009-09-03 13:39:34 +000081 *
82 </Import-Package>
Guillaume Nodet213efef2010-10-25 20:19:04 +000083 <Include-Resource>
84 src/main/resources,
85 META-INF/LICENSE=LICENSE,
86 META-INF/NOTICE=NOTICE,
87 META-INF/DEPENDENCIES=DEPENDENCIES
88 </Include-Resource>
Guillaume Nodet32a23242009-09-03 15:39:17 +000089 <Bundle-Activator>org.apache.felix.fileinstall.internal.FileInstall</Bundle-Activator>
Richard S. Hallb63426f2008-03-05 20:03:55 +000090 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
Carsten Ziegeler90f0b9f2008-04-17 06:33:59 +000091 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
Guillaume Nodeta4afb792009-09-03 13:39:34 +000092 <_versionpolicy>[$(version;==;$(@)),$(version;+;$(@)))</_versionpolicy>
Carsten Ziegeler8c2f61e2010-08-06 14:33:43 +000093 <Embed-Dependency>
Guillaume Nodet213efef2010-10-25 20:19:04 +000094 org.apache.felix.configadmin;inline="org/apache/felix/cm/file/ConfigurationHandler.*",
95 org.apache.felix.utils;inline="org/apache/felix/utils/collections/DictionaryAsMap*.*"
Carsten Ziegeler8c2f61e2010-08-06 14:33:43 +000096 </Embed-Dependency>
Richard S. Hallb63426f2008-03-05 20:03:55 +000097 </instructions>
98 </configuration>
99 </plugin>
Richard S. Hall46e748d2010-08-03 13:25:34 +0000100 <plugin>
101 <groupId>org.codehaus.mojo</groupId>
102 <artifactId>rat-maven-plugin</artifactId>
103 <configuration>
104 <excludeSubProjects>false</excludeSubProjects>
105 <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
106 <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
107 <excludes>
108 <param>doc/*</param>
109 <param>maven-eclipse.xml</param>
110 <param>.checkstyle</param>
111 <param>.externalToolBuilders/*</param>
112 </excludes>
113 </configuration>
114 </plugin>
Richard S. Hallb63426f2008-03-05 20:03:55 +0000115 </plugins>
116 </build>
Richard S. Hallb63426f2008-03-05 20:03:55 +0000117</project>