blob: 23bd1cb917da31610b421947784b0ba32357419a [file] [log] [blame]
Ian Maxonfc738fd2015-09-02 20:42:09 -10001<!--
Till Westmann5b431ca2015-10-01 19:16:11 -07002 ! 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 !-->
Ian Maxonfc738fd2015-09-02 20:42:09 -100019<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
20 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 <id>source-release</id>
23 <formats>
24 <format>zip</format>
25 </formats>
26 <fileSets>
27 <fileSet>
28 <directory>${project.basedir}</directory>
29 <outputDirectory>/</outputDirectory>
30 <useDefaultExcludes>true</useDefaultExcludes>
31 <includes>
32 <include>**/DISCLAIMER</include>
33 <include>**/LICENSE</include>
34 <include>**/NOTICE</include>
35 <include>**/README</include>
36 <include>**/src/**</include>
37 <include>**/results/**</include>
38 <include>**/pom.xml</include>
39 <include>**/build*.xml</include>
40 <include>**/findbugs*.xml</include>
Ian Maxon4ccf1382015-09-09 16:04:40 -070041 <include>**/*site.xml</include>
42 <include>**/*.adm</include>
43 <include>**/*.json</include>
44 <include>**/*.aql</include>
45 <include>**/*.ddl</include>
46 <include>**/*.seq</include>
47 <include>**/*.rc</include>
48 <include>**/*.big</include>
49 <include>**/*textFileS</include>
50 <include>**/*large_text</include>
51 <include>**/*.csv*</include>
52 <include>**/*.tbl</include>
53 <include>**/*.txt</include>
54 <include>**/part-*</include>
55 <include>**/*.cleaned</include>
Ian Maxon93fe30a2015-10-02 11:46:45 -070056 <include>**/*.md</include>
Ian Maxonff877912015-10-05 12:40:05 -070057 <include>**/*.hcli</include>
58 <include>**/*.properties</include>
59 <include>**/*.scm</include>
Ian Maxonf4b7b542015-10-05 11:05:15 -070060 <include>**/*.sh</include>
Ian Maxonfc738fd2015-09-02 20:42:09 -100061 </includes>
62 <excludes>
63 <exclude>**/${project.build.directory}/**</exclude>
64 </excludes>
65 </fileSet>
66 </fileSets>
67</assembly>