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 |
Timoney, Daniel (dt5972) | 15323be | 2017-04-25 12:40:01 +0000 | [diff] [blame] | 6 | reserved. |
Dan Timoney | b217558 | 2017-03-31 17:47:19 -0400 | [diff] [blame] | 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"> |
Guo Ruijing | a5aae99 | 2017-05-07 19:08:00 +0000 | [diff] [blame] | 28 | <id>bin</id> |
Dan Timoney | b217558 | 2017-03-31 17:47:19 -0400 | [diff] [blame] | 29 | <formats> |
| 30 | <format>zip</format> |
| 31 | </formats> |
| 32 | |
| 33 | <includeBaseDirectory>false</includeBaseDirectory> |
| 34 | |
| 35 | <fileSets> |
| 36 | <fileSet> |
| 37 | <directory>core_nodes</directory> |
| 38 | <outputDirectory>dgbuilder/core_nodes</outputDirectory> |
| 39 | </fileSet> |
| 40 | <fileSet> |
| 41 | <directory>dgeflows</directory> |
| 42 | <outputDirectory>dgbuilder/dgeflows</outputDirectory> |
| 43 | </fileSet> |
| 44 | <fileSet> |
| 45 | <directory>generatedJS</directory> |
| 46 | <outputDirectory>dgbuilder/generatedJS</outputDirectory> |
| 47 | </fileSet> |
| 48 | <fileSet> |
| 49 | <directory>git_scripts</directory> |
| 50 | <outputDirectory>dgbuilder/git_scripts</outputDirectory> |
| 51 | </fileSet> |
| 52 | <fileSet> |
| 53 | <directory>nodes</directory> |
| 54 | <outputDirectory>dgbuilder/nodes</outputDirectory> |
| 55 | </fileSet> |
| 56 | <fileSet> |
| 57 | <directory>public</directory> |
| 58 | <outputDirectory>dgbuilder/public</outputDirectory> |
| 59 | </fileSet> |
| 60 | <fileSet> |
| 61 | <directory>red</directory> |
| 62 | <outputDirectory>dgbuilder/red</outputDirectory> |
| 63 | </fileSet> |
| 64 | <fileSet> |
| 65 | <directory>releases</directory> |
| 66 | <outputDirectory>dgbuilder/releases</outputDirectory> |
| 67 | </fileSet> |
| 68 | <fileSet> |
| 69 | <directory>svclogic</directory> |
| 70 | <outputDirectory>dgbuilder/svclogic</outputDirectory> |
| 71 | </fileSet> |
| 72 | <fileSet> |
| 73 | <directory>test</directory> |
| 74 | <outputDirectory>dgbuilder/test</outputDirectory> |
| 75 | </fileSet> |
| 76 | <fileSet> |
| 77 | <directory>tools</directory> |
| 78 | <outputDirectory>dgbuilder/tools</outputDirectory> |
| 79 | </fileSet> |
| 80 | <fileSet> |
| 81 | <directory>yangFiles</directory> |
| 82 | <outputDirectory>dgbuilder/yangFiles</outputDirectory> |
| 83 | </fileSet> |
| 84 | <fileSet> |
| 85 | <directory>.</directory> |
| 86 | <outputDirectory>dgbuilder/</outputDirectory> |
| 87 | <includes> |
| 88 | <include>*.json</include> |
| 89 | <include>*.js</include> |
| 90 | <include>*.md</include> |
| 91 | <include>*.sh</include> |
| 92 | <include>LICENSE</include> |
| 93 | </includes> |
| 94 | </fileSet> |
| 95 | <fileSet> |
| 96 | <directory>target/svclogic/lib</directory> |
| 97 | <outputDirectory>dgbuilder/svclogic/lib</outputDirectory> |
| 98 | <includes> |
Chinthakayala, Sheshashailavas | 4cc1e4b | 2017-04-07 08:18:56 -0900 | [diff] [blame] | 99 | <include>*.jar</include> |
Dan Timoney | b217558 | 2017-03-31 17:47:19 -0400 | [diff] [blame] | 100 | </includes> |
| 101 | </fileSet> |
| 102 | </fileSets> |
| 103 | |
| 104 | |
| 105 | </assembly> |