Dan Timoney | b217558 | 2017-03-31 17:47:19 -0400 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | openECOMP : SDN-C |
| 4 | ================================================================================ |
| 5 | Copyright (C) 2017 AT&T Intellectual Property. All rights |
| 6 | reserved. |
| 7 | ================================================================================ |
| 8 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 9 | you may not use this file except in compliance with the License. |
| 10 | You may obtain a copy of the License at |
| 11 | |
| 12 | http://www.apache.org/licenses/LICENSE-2.0 |
| 13 | |
| 14 | Unless required by applicable law or agreed to in writing, software |
| 15 | distributed under the License is distributed on an "AS IS" BASIS, |
| 16 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 17 | See the License for the specific language governing permissions and |
| 18 | limitations under the License. |
| 19 | ============LICENSE_END========================================================= |
| 20 | --> |
| 21 | |
| 22 | <!-- Defines how we build the .zip file which is our distribution. --> |
| 23 | |
| 24 | <assembly |
| 25 | xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0" |
| 26 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 27 | xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd"> |
| 28 | <formats> |
| 29 | <format>zip</format> |
| 30 | </formats> |
| 31 | |
| 32 | <includeBaseDirectory>false</includeBaseDirectory> |
| 33 | |
| 34 | <fileSets> |
| 35 | <fileSet> |
| 36 | <directory>core_nodes</directory> |
| 37 | <outputDirectory>dgbuilder/core_nodes</outputDirectory> |
| 38 | </fileSet> |
| 39 | <fileSet> |
| 40 | <directory>dgeflows</directory> |
| 41 | <outputDirectory>dgbuilder/dgeflows</outputDirectory> |
| 42 | </fileSet> |
| 43 | <fileSet> |
| 44 | <directory>generatedJS</directory> |
| 45 | <outputDirectory>dgbuilder/generatedJS</outputDirectory> |
| 46 | </fileSet> |
| 47 | <fileSet> |
| 48 | <directory>git_scripts</directory> |
| 49 | <outputDirectory>dgbuilder/git_scripts</outputDirectory> |
| 50 | </fileSet> |
| 51 | <fileSet> |
| 52 | <directory>nodes</directory> |
| 53 | <outputDirectory>dgbuilder/nodes</outputDirectory> |
| 54 | </fileSet> |
| 55 | <fileSet> |
| 56 | <directory>public</directory> |
| 57 | <outputDirectory>dgbuilder/public</outputDirectory> |
| 58 | </fileSet> |
| 59 | <fileSet> |
| 60 | <directory>red</directory> |
| 61 | <outputDirectory>dgbuilder/red</outputDirectory> |
| 62 | </fileSet> |
| 63 | <fileSet> |
| 64 | <directory>releases</directory> |
| 65 | <outputDirectory>dgbuilder/releases</outputDirectory> |
| 66 | </fileSet> |
| 67 | <fileSet> |
| 68 | <directory>svclogic</directory> |
| 69 | <outputDirectory>dgbuilder/svclogic</outputDirectory> |
| 70 | </fileSet> |
| 71 | <fileSet> |
| 72 | <directory>test</directory> |
| 73 | <outputDirectory>dgbuilder/test</outputDirectory> |
| 74 | </fileSet> |
| 75 | <fileSet> |
| 76 | <directory>tools</directory> |
| 77 | <outputDirectory>dgbuilder/tools</outputDirectory> |
| 78 | </fileSet> |
| 79 | <fileSet> |
| 80 | <directory>yangFiles</directory> |
| 81 | <outputDirectory>dgbuilder/yangFiles</outputDirectory> |
| 82 | </fileSet> |
| 83 | <fileSet> |
| 84 | <directory>.</directory> |
| 85 | <outputDirectory>dgbuilder/</outputDirectory> |
| 86 | <includes> |
| 87 | <include>*.json</include> |
| 88 | <include>*.js</include> |
| 89 | <include>*.md</include> |
| 90 | <include>*.sh</include> |
| 91 | <include>LICENSE</include> |
| 92 | </includes> |
| 93 | </fileSet> |
| 94 | <fileSet> |
| 95 | <directory>target/svclogic/lib</directory> |
| 96 | <outputDirectory>dgbuilder/svclogic/lib</outputDirectory> |
| 97 | <includes> |
| 98 | <include>sli-common*.jar</include> |
| 99 | <include>mysql-connector*.jar</include> |
| 100 | <include>antlr*.jar</include> |
| 101 | <include>commons-lang*.jar</include> |
| 102 | <include>slf4j-api*.jar</include> |
| 103 | <include>slf4j-simple*.jar</include> |
| 104 | </includes> |
| 105 | </fileSet> |
| 106 | </fileSets> |
| 107 | |
| 108 | |
| 109 | </assembly> |