blob: 75c47199785127c6302ece4cc38378b1d477cf83 [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>
Guillaume Nodet7b76c0a2013-12-05 23:01:03 +000023 <version>2.1</version>
Richard S. Hall7bf7a4d2010-08-03 13:25:34 +000024 <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>
Guillaume Nodet7b76c0a2013-12-05 23:01:03 +000028 <packaging>jar</packaging>
Richard S. Hallb63426f2008-03-05 20:03:55 +000029 <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>
Guillaume Nodet6a544632015-03-05 08:40:36 +000032 <version>3.5.1-SNAPSHOT</version>
Richard S. Hallb63426f2008-03-05 20:03:55 +000033 <artifactId>org.apache.felix.fileinstall</artifactId>
Guillaume Nodet67b0ff52012-04-18 07:09:54 +000034 <scm>
Guillaume Nodet6a544632015-03-05 08:40:36 +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 Nodet67b0ff52012-04-18 07:09:54 +000038 </scm>
Richard S. Hallb63426f2008-03-05 20:03:55 +000039 <dependencies>
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.core</artifactId>
Guillaume Nodetcabad862014-03-31 16:12:03 +000043 <version>4.3.1</version>
Guillaume Nodet13bce9c2012-03-16 08:17:34 +000044 <scope>provided</scope>
Richard S. Hallb63426f2008-03-05 20:03:55 +000045 </dependency>
46 <dependency>
Guillaume Nodet93c943e2009-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 Nodetcabad862014-03-31 16:12:03 +000049 <version>4.3.1</version>
Guillaume Nodet13bce9c2012-03-16 08:17:34 +000050 <scope>provided</scope>
Richard S. Hallb63426f2008-03-05 20:03:55 +000051 </dependency>
Carsten Ziegelerc6e24392010-08-06 14:33:43 +000052 <dependency>
53 <groupId>org.apache.felix</groupId>
54 <artifactId>org.apache.felix.configadmin</artifactId>
Guillaume Nodet3d144cd2010-10-25 20:19:04 +000055 <version>1.2.8</version>
Guillaume Nodet3d144cd2010-10-25 20:19:04 +000056 </dependency>
57 <dependency>
58 <groupId>org.apache.felix</groupId>
59 <artifactId>org.apache.felix.utils</artifactId>
Guillaume Nodetf8f64b52015-03-05 08:38:20 +000060 <version>1.8.0</version>
Carsten Ziegelerc6e24392010-08-06 14:33:43 +000061 </dependency>
Richard S. Hallb63426f2008-03-05 20:03:55 +000062 </dependencies>
63 <build>
64 <plugins>
65 <plugin>
Guillaume Nodetcabad862014-03-31 16:12:03 +000066 <artifactId>maven-compiler-plugin</artifactId>
67 <configuration>
68 <source>1.5</source>
69 <target>1.5</target>
70 </configuration>
71 </plugin>
72 <plugin>
Guillaume Nodet0aebbe92013-12-06 09:07:13 +000073 <artifactId>maven-jar-plugin</artifactId>
74 <configuration>
75 <archive>
76 <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
77 </archive>
78 </configuration>
79 </plugin>
80 <plugin>
Richard S. Hallb63426f2008-03-05 20:03:55 +000081 <groupId>org.apache.felix</groupId>
82 <artifactId>maven-bundle-plugin</artifactId>
Guillaume Nodet3d144cd2010-10-25 20:19:04 +000083 <version>2.1.0</version>
Richard S. Hallb63426f2008-03-05 20:03:55 +000084 <extensions>true</extensions>
85 <configuration>
86 <instructions>
Guillaume Nodet472d23a2009-09-03 13:39:34 +000087 <Export-Package>
Guillaume Nodeta2861572009-10-14 13:00:51 +000088 org.apache.felix.fileinstall;version=${project.version}
Guillaume Nodet472d23a2009-09-03 13:39:34 +000089 </Export-Package>
Stuart McCullocha96eeef2009-09-03 17:22:01 +000090 <Private-Package>
Guillaume Nodet3d144cd2010-10-25 20:19:04 +000091 org.apache.felix.fileinstall.internal,
Guillaume Nodet10127002012-03-16 14:56:39 +000092 org.apache.felix.utils.manifest,
Guillaume Nodet3d144cd2010-10-25 20:19:04 +000093 org.apache.felix.utils.properties,
Guillaume Nodet10127002012-03-16 14:56:39 +000094 org.apache.felix.utils.version,
Stuart McCullocha96eeef2009-09-03 17:22:01 +000095 </Private-Package>
Guillaume Nodet472d23a2009-09-03 13:39:34 +000096 <Import-Package>
97 org.osgi.service.log;resolution:=optional,
Guillaume Nodeta2861572009-10-14 13:00:51 +000098 org.osgi.service.cm;resolution:=optional,
Guillaume Nodet0aebbe92013-12-06 09:07:13 +000099 !org.apache.felix.fileinstall,
100 !org.apache.felix.cm.file,
101 !org.apache.felix.utils.*,
Guillaume Nodet472d23a2009-09-03 13:39:34 +0000102 *
103 </Import-Package>
Guillaume Nodet67bfa5f2009-09-03 15:39:17 +0000104 <Bundle-Activator>org.apache.felix.fileinstall.internal.FileInstall</Bundle-Activator>
Richard S. Hallb63426f2008-03-05 20:03:55 +0000105 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
Carsten Ziegelercf6e51b2008-04-17 06:33:59 +0000106 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
Guillaume Nodetf9379dd2012-04-17 16:25:00 +0000107 <Bundle-DocURL>
108 http://felix.apache.org/site/apache-felix-file-install.html
109 </Bundle-DocURL>
Guillaume Nodet472d23a2009-09-03 13:39:34 +0000110 <_versionpolicy>[$(version;==;$(@)),$(version;+;$(@)))</_versionpolicy>
Carsten Ziegelerc6e24392010-08-06 14:33:43 +0000111 <Embed-Dependency>
Guillaume Nodet7b76c0a2013-12-05 23:01:03 +0000112 org.apache.felix.configadmin;inline="org/apache/felix/cm/file/ConfigurationHandler.class",
113 org.apache.felix.utils;inline="org/apache/felix/utils/collections/DictionaryAsMap*.class"
Carsten Ziegelerc6e24392010-08-06 14:33:43 +0000114 </Embed-Dependency>
Richard S. Hallb63426f2008-03-05 20:03:55 +0000115 </instructions>
116 </configuration>
Guillaume Nodet7b76c0a2013-12-05 23:01:03 +0000117 <executions>
118 <execution>
119 <id>bundle-manifest</id>
120 <phase>process-classes</phase>
121 <goals>
122 <goal>manifest</goal>
123 </goals>
124 </execution>
125 </executions>
Richard S. Hallb63426f2008-03-05 20:03:55 +0000126 </plugin>
Richard S. Hall7bf7a4d2010-08-03 13:25:34 +0000127 <plugin>
Guillaume Nodeta6cb91a2012-09-03 13:08:02 +0000128 <groupId>org.apache.maven.plugins</groupId>
129 <artifactId>maven-source-plugin</artifactId>
Guillaume Nodet7b76c0a2013-12-05 23:01:03 +0000130 <version>2.2.1</version>
Guillaume Nodeta6cb91a2012-09-03 13:08:02 +0000131 <executions>
132 <execution>
133 <id>attach-sources</id>
Guillaume Nodet7b76c0a2013-12-05 23:01:03 +0000134 <phase>prepare-package</phase>
Guillaume Nodeta6cb91a2012-09-03 13:08:02 +0000135 <goals>
Guillaume Nodet7b76c0a2013-12-05 23:01:03 +0000136 <goal>jar-no-fork</goal>
Guillaume Nodeta6cb91a2012-09-03 13:08:02 +0000137 </goals>
138 </execution>
139 </executions>
140 </plugin>
141 <plugin>
142 <groupId>org.apache.maven.plugins</groupId>
143 <artifactId>maven-shade-plugin</artifactId>
Guillaume Nodet7b76c0a2013-12-05 23:01:03 +0000144 <version>2.2</version>
Guillaume Nodeta6cb91a2012-09-03 13:08:02 +0000145 <executions>
146 <execution>
147 <phase>package</phase>
148 <goals>
149 <goal>shade</goal>
150 </goals>
151 <configuration>
152 <artifactSet>
153 <includes>
154 <include>org.apache.felix:org.apache.felix.configadmin</include>
155 <include>org.apache.felix:org.apache.felix.utils</include>
156 </includes>
157 </artifactSet>
158 <filters>
159 <filter>
160 <artifact>org.apache.felix:org.apache.felix.configadmin</artifact>
161 <includes>
162 <include>**/ConfigurationHandler.*</include>
163 </includes>
164 </filter>
165 <filter>
166 <artifact>org.apache.felix:org.apache.felix.utils</artifact>
167 <includes>
Guillaume Nodet0aebbe92013-12-06 09:07:13 +0000168 <include>**/DictionaryAsMap*.*</include>
Guillaume Nodet7b76c0a2013-12-05 23:01:03 +0000169 <include>org/apache/felix/utils/manifest/**</include>
170 <include>org/apache/felix/utils/properties/**</include>
171 <include>org/apache/felix/utils/version/**</include>
Guillaume Nodeta6cb91a2012-09-03 13:08:02 +0000172 </includes>
173 </filter>
174 </filters>
175 <createSourcesJar>true</createSourcesJar>
176 <promoteTransitiveDependencies>true</promoteTransitiveDependencies>
177 <createDependencyReducedPom>true</createDependencyReducedPom>
178 </configuration>
179 </execution>
180 </executions>
181 </plugin>
182 <plugin>
Richard S. Hall7bf7a4d2010-08-03 13:25:34 +0000183 <groupId>org.codehaus.mojo</groupId>
184 <artifactId>rat-maven-plugin</artifactId>
185 <configuration>
186 <excludeSubProjects>false</excludeSubProjects>
187 <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
188 <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
189 <excludes>
190 <param>doc/*</param>
191 <param>maven-eclipse.xml</param>
192 <param>.checkstyle</param>
193 <param>.externalToolBuilders/*</param>
194 </excludes>
195 </configuration>
196 </plugin>
Richard S. Hallb63426f2008-03-05 20:03:55 +0000197 </plugins>
198 </build>
Richard S. Hallb63426f2008-03-05 20:03:55 +0000199</project>