Christopher Lott (cl778h) | 978dbcf | 2017-08-23 18:27:19 -0400 | [diff] [blame] | 1 | <assembly |
| 2 | xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 " |
| 3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance " |
| 4 | xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 |
| 5 | http://maven.apache.org/xsd/assembly-1.1.2.xsd "> |
| 6 | <!-- second part of the final zip archive name --> |
| 7 | <id>widget</id> |
| 8 | <includeBaseDirectory>false</includeBaseDirectory> |
| 9 | <formats> |
| 10 | <format>zip</format> |
| 11 | </formats> |
| 12 | <fileSets> |
| 13 | <fileSet> |
| 14 | <directory>${basedir}</directory> |
| 15 | <includes> |
| 16 | <include>news-widget/**</include> |
| 17 | </includes> |
| 18 | <!-- silence warning about filesystem-root relative reference --> |
| 19 | <outputDirectory>${file.separator}</outputDirectory> |
| 20 | <filtered>true</filtered> |
| 21 | </fileSet> |
| 22 | </fileSets> |
| 23 | </assembly> |