Ian Maxon | a6b4b93 | 2015-09-01 09:23:18 -1000 | [diff] [blame] | 1 | <!-- |
| 2 | Licensed to the Apache Software Foundation (ASF) under one or more |
| 3 | contributor license agreements. See the NOTICE file distributed with |
| 4 | this work for additional information regarding copyright ownership. |
| 5 | The ASF licenses this file to You under the Apache License, Version 2.0 |
| 6 | (the "License"); you may not use this file except in compliance with |
| 7 | the License. You may obtain a copy of the License at |
| 8 | http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | Unless required by applicable law or agreed to in writing, software |
| 10 | distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | See the License for the specific language governing permissions and |
| 13 | limitations under the License. |
| 14 | --> |
| 15 | <assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2" |
| 16 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 17 | xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd"> |
| 18 | <id>source-release</id> |
| 19 | <formats> |
| 20 | <format>zip</format> |
| 21 | </formats> |
| 22 | <fileSets> |
| 23 | <fileSet> |
| 24 | <directory>${project.basedir}</directory> |
| 25 | <outputDirectory>/</outputDirectory> |
| 26 | <useDefaultExcludes>true</useDefaultExcludes> |
| 27 | <includes> |
| 28 | <include>**/DISCLAIMER</include> |
| 29 | <include>**/LICENSE</include> |
| 30 | <include>**/NOTICE</include> |
| 31 | <include>**/README</include> |
| 32 | <include>**/src/**</include> |
| 33 | <include>**/results/**</include> |
| 34 | <include>**/pom.xml</include> |
| 35 | <include>**/build*.xml</include> |
| 36 | <include>**/findbugs*.xml</include> |
Ian Maxon | ec57292 | 2015-09-08 14:48:37 -0700 | [diff] [blame] | 37 | <include>**/*.tbl</include> |
| 38 | <include>**/*.tsv</include> |
| 39 | <include>**/*.js</include> |
| 40 | <include>**/*.txt</include> |
| 41 | <include>**/*.piglet</include> |
| 42 | <include>**/*.ddl</include> |
Ian Maxon | a6b4b93 | 2015-09-01 09:23:18 -1000 | [diff] [blame] | 43 | </includes> |
| 44 | <excludes> |
| 45 | <exclude>**/${project.build.directory}/**</exclude> |
| 46 | </excludes> |
| 47 | </fileSet> |
| 48 | </fileSets> |
| 49 | </assembly> |