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" |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 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"> |
Ian Maxon | a6b4b93 | 2015-09-01 09:23:18 -1000 | [diff] [blame] | 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> |
Ian Maxon | a6b4b93 | 2015-09-01 09:23:18 -1000 | [diff] [blame] | 27 | <excludes> |
Michael Blow | cb9ca97 | 2018-01-27 23:03:30 -0500 | [diff] [blame] | 28 | <exclude>${project.build.directory}/**</exclude> |
| 29 | <exclude>release.properties</exclude> |
Ian Maxon | a6b4b93 | 2015-09-01 09:23:18 -1000 | [diff] [blame] | 30 | </excludes> |
| 31 | </fileSet> |
| 32 | </fileSets> |
| 33 | </assembly> |