blob: 7226735da31ccb69e430a0da553c138e7e1c15cc [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>
Guillaume Nodetc713aa02012-04-17 16:25:00 +000023 <version>2</version>
Richard S. Hall46e748d2010-08-03 13:25:34 +000024 <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 Nodet8a461932012-06-12 07:04:22 +000032 <version>3.3.0-SNAPSHOT</version>
Richard S. Hallb63426f2008-03-05 20:03:55 +000033 <artifactId>org.apache.felix.fileinstall</artifactId>
Guillaume Nodet754dcb32012-04-18 07:09:54 +000034 <scm>
Guillaume Nodet8a461932012-06-12 07:04:22 +000035 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/fileinstall</connection>
36 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/fileinstall</developerConnection>
37 <url>http://svn.apache.org/repos/asf/felix/fileinstall</url>
Guillaume Nodet754dcb32012-04-18 07:09:54 +000038 </scm>
Richard S. Hallb63426f2008-03-05 20:03:55 +000039 <dependencies>
40 <dependency>
Guillaume Nodetfb35af12009-12-16 09:28:31 +000041 <groupId>org.osgi</groupId>
Richard S. Hallb63426f2008-03-05 20:03:55 +000042 <artifactId>org.osgi.core</artifactId>
Guillaume Nodetf29e3482009-12-16 12:16:23 +000043 <version>4.1.0</version>
Guillaume Nodet98695372012-03-16 08:17:34 +000044 <scope>provided</scope>
Richard S. Hallb63426f2008-03-05 20:03:55 +000045 </dependency>
46 <dependency>
Guillaume Nodetfb35af12009-12-16 09:28:31 +000047 <groupId>org.osgi</groupId>
Richard S. Hallb63426f2008-03-05 20:03:55 +000048 <artifactId>org.osgi.compendium</artifactId>
Guillaume Nodetf29e3482009-12-16 12:16:23 +000049 <version>4.1.0</version>
Guillaume Nodet98695372012-03-16 08:17:34 +000050 <scope>provided</scope>
Richard S. Hallb63426f2008-03-05 20:03:55 +000051 </dependency>
Carsten Ziegeler8c2f61e2010-08-06 14:33:43 +000052 <dependency>
53 <groupId>org.apache.felix</groupId>
54 <artifactId>org.apache.felix.configadmin</artifactId>
Guillaume Nodet213efef2010-10-25 20:19:04 +000055 <version>1.2.8</version>
56 <scope>provided</scope>
57 </dependency>
58 <dependency>
59 <groupId>org.apache.felix</groupId>
60 <artifactId>org.apache.felix.utils</artifactId>
Guillaume Nodet1993d362012-06-12 07:03:16 +000061 <version>1.2.0</version>
Carsten Ziegeler8c2f61e2010-08-06 14:33:43 +000062 <scope>provided</scope>
63 </dependency>
Richard S. Hallb63426f2008-03-05 20:03:55 +000064 </dependencies>
65 <build>
66 <plugins>
67 <plugin>
68 <groupId>org.apache.felix</groupId>
69 <artifactId>maven-bundle-plugin</artifactId>
Guillaume Nodet213efef2010-10-25 20:19:04 +000070 <version>2.1.0</version>
Richard S. Hallb63426f2008-03-05 20:03:55 +000071 <extensions>true</extensions>
72 <configuration>
73 <instructions>
Guillaume Nodeta4afb792009-09-03 13:39:34 +000074 <Export-Package>
Guillaume Nodetd567a242009-10-14 13:00:51 +000075 org.apache.felix.fileinstall;version=${project.version}
Guillaume Nodeta4afb792009-09-03 13:39:34 +000076 </Export-Package>
Stuart McCullochf3af5892009-09-03 17:22:01 +000077 <Private-Package>
Guillaume Nodet213efef2010-10-25 20:19:04 +000078 org.apache.felix.fileinstall.internal,
Guillaume Nodeta6a78f12012-03-16 14:56:39 +000079 org.apache.felix.utils.manifest,
Guillaume Nodet213efef2010-10-25 20:19:04 +000080 org.apache.felix.utils.properties,
Guillaume Nodeta6a78f12012-03-16 14:56:39 +000081 org.apache.felix.utils.version,
Stuart McCullochf3af5892009-09-03 17:22:01 +000082 </Private-Package>
Guillaume Nodeta4afb792009-09-03 13:39:34 +000083 <Import-Package>
84 org.osgi.service.log;resolution:=optional,
Guillaume Nodetd567a242009-10-14 13:00:51 +000085 org.osgi.service.cm;resolution:=optional,
Guillaume Nodeta4afb792009-09-03 13:39:34 +000086 *
87 </Import-Package>
Guillaume Nodet32a23242009-09-03 15:39:17 +000088 <Bundle-Activator>org.apache.felix.fileinstall.internal.FileInstall</Bundle-Activator>
Richard S. Hallb63426f2008-03-05 20:03:55 +000089 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
Carsten Ziegeler90f0b9f2008-04-17 06:33:59 +000090 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
Guillaume Nodetc713aa02012-04-17 16:25:00 +000091 <Bundle-DocURL>
92 http://felix.apache.org/site/apache-felix-file-install.html
93 </Bundle-DocURL>
Guillaume Nodeta4afb792009-09-03 13:39:34 +000094 <_versionpolicy>[$(version;==;$(@)),$(version;+;$(@)))</_versionpolicy>
Carsten Ziegeler8c2f61e2010-08-06 14:33:43 +000095 <Embed-Dependency>
Guillaume Nodet213efef2010-10-25 20:19:04 +000096 org.apache.felix.configadmin;inline="org/apache/felix/cm/file/ConfigurationHandler.*",
97 org.apache.felix.utils;inline="org/apache/felix/utils/collections/DictionaryAsMap*.*"
Carsten Ziegeler8c2f61e2010-08-06 14:33:43 +000098 </Embed-Dependency>
Richard S. Hallb63426f2008-03-05 20:03:55 +000099 </instructions>
100 </configuration>
101 </plugin>
Richard S. Hall46e748d2010-08-03 13:25:34 +0000102 <plugin>
103 <groupId>org.codehaus.mojo</groupId>
104 <artifactId>rat-maven-plugin</artifactId>
105 <configuration>
106 <excludeSubProjects>false</excludeSubProjects>
107 <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
108 <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
109 <excludes>
110 <param>doc/*</param>
111 <param>maven-eclipse.xml</param>
112 <param>.checkstyle</param>
113 <param>.externalToolBuilders/*</param>
114 </excludes>
115 </configuration>
116 </plugin>
Richard S. Hallb63426f2008-03-05 20:03:55 +0000117 </plugins>
118 </build>
Richard S. Hallb63426f2008-03-05 20:03:55 +0000119</project>