blob: 3fb95b833cc3ab3455c0ad4d03e90add47ddd721 [file] [log] [blame]
Clement Escoffierc74607a2013-10-06 14:08:45 +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>feature</id>
24
25 <formats>
26 <format>zip</format>
27 </formats>
28
29 <includeBaseDirectory>true</includeBaseDirectory>
30 <baseDirectory>/</baseDirectory>
31
32 <fileSets>
33 <fileSet>
34 <directory>${project.build.directory}</directory>
35 <includes>
36 <include>features.xml</include>
37 </includes>
38 <outputDirectory/>
39 </fileSet>
40
41 <fileSet>
Clement Escoffier2ed091c2013-10-06 14:11:29 +000042 <directory>${project.basedir}</directory>
43 <includes>
44 <include>changelog.txt</include>
45 </includes>
46 <outputDirectory/>
47 </fileSet>
48
49 <fileSet>
Clement Escoffierc74607a2013-10-06 14:08:45 +000050 <directory>${legal.files}</directory>
51 <outputDirectory/>
52 </fileSet>
53 </fileSets>
54</assembly>