Ian Maxon | fc738fd | 2015-09-02 20:42:09 -1000 | [diff] [blame] | 1 | <!-- |
Till Westmann | 5b431ca | 2015-10-01 19:16:11 -0700 | [diff] [blame] | 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 | !--> |
Ian Maxon | fc738fd | 2015-09-02 20:42:09 -1000 | [diff] [blame] | 19 | <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 Maxon | 4ccf138 | 2015-09-09 16:04:40 -0700 | [diff] [blame] | 41 | <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 Maxon | 93fe30a | 2015-10-02 11:46:45 -0700 | [diff] [blame] | 56 | <include>**/*.md</include> |
Ian Maxon | f4b7b54 | 2015-10-05 11:05:15 -0700 | [diff] [blame^] | 57 | <include>**/schema</include> |
| 58 | <include>**/*.sh</include> |
Ian Maxon | fc738fd | 2015-09-02 20:42:09 -1000 | [diff] [blame] | 59 | </includes> |
| 60 | <excludes> |
| 61 | <exclude>**/${project.build.directory}/**</exclude> |
| 62 | </excludes> |
| 63 | </fileSet> |
| 64 | </fileSets> |
| 65 | </assembly> |