blob: 13fa2ba90371c70adafec5a341d0a881cd3bbeb7 [file] [log] [blame]
Clement Escoffier01c0d7b2013-07-02 08:47:10 +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
20<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
21 xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd">
22
23 <id>distribution</id>
24
25 <formats>
26 <format>dir</format>
27 <format>zip</format>
28 </formats>
29
30 <includeBaseDirectory>true</includeBaseDirectory>
31 <baseDirectory>${distribution.baseDirectory}</baseDirectory>
32
33 <fileSets>
34 <fileSet>
35 <directory>${felix.destination}/felix-framework-${felix.version}</directory>
36 <outputDirectory/>
37 <includes>
38 <include>bin/**</include>
39 <include>bundle/**</include>
40 <include>conf/**</include>
41 </includes>
42 </fileSet>
43
44 <fileSet>
45 <directory>${legal.files}</directory>
46 <outputDirectory/>
47 </fileSet>
48 </fileSets>
49
50 <dependencySets>
51 <dependencySet>
52 <includes>
53 <include>*:org.apache.felix.ipojo:*</include>
54 <include>*:org.apache.felix.ipojo.gogo:*</include>
55 </includes>
56 <unpack>false</unpack>
57 <outputDirectory>bundle</outputDirectory>
58 </dependencySet>
59 </dependencySets>
60
61</assembly>