Fraboni, Gino (gf403a) | 578368f | 2017-05-03 13:47:43 -0400 | [diff] [blame^] | 1 | <!--
|
| 2 | ============LICENSE_START======================================================= |
| 3 | MODEL LOADER SERVICE |
| 4 | ================================================================================ |
| 5 | Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. |
| 6 | ================================================================================ |
| 7 | Licensed under the Apache License, Version 2.0 (the "License");
|
| 8 | you may not use this file except in compliance with the License.
|
| 9 | You may obtain a copy of the License at
|
| 10 |
|
| 11 | http://www.apache.org/licenses/LICENSE-2.0
|
| 12 |
|
| 13 | Unless required by applicable law or agreed to in writing, software
|
| 14 | distributed under the License is distributed on an "AS IS" BASIS,
|
| 15 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| 16 | See the License for the specific language governing permissions and
|
| 17 | limitations under the License. |
| 18 | ============LICENSE_END=========================================================
|
| 19 | -->
|
| 20 |
|
| 21 | <assembly
|
| 22 | xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
|
| 23 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
| 24 | xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd">
|
| 25 | <id>runtimeEnvironment</id>
|
| 26 | <includeBaseDirectory>false</includeBaseDirectory>
|
| 27 | <formats>
|
| 28 | <format>zip</format>
|
| 29 | </formats>
|
| 30 | <fileSets>
|
| 31 | <fileSet>
|
| 32 | <directory>${project.basedir}/target/versioned-runtime/context/</directory>
|
| 33 | <outputDirectory>runtime/context/</outputDirectory>
|
| 34 | <includes>
|
| 35 | <include>*.context</include>
|
| 36 | </includes>
|
| 37 | </fileSet>
|
| 38 | <fileSet>
|
| 39 | <directory>${project.basedir}/target/versioned-runtime/serviceProperties/</directory>
|
| 40 | <outputDirectory>runtime/serviceProperties/</outputDirectory>
|
| 41 | <includes>
|
| 42 | <include>*.props</include>
|
| 43 | </includes>
|
| 44 | </fileSet><fileSet>
|
| 45 | <directory>${project.basedir}/target/versioned-runtime/shiroRole</directory>
|
| 46 | <outputDirectory>runtime/shiroRole/</outputDirectory>
|
| 47 | <includes>
|
| 48 | <include>*.json</include>
|
| 49 | </includes>
|
| 50 | </fileSet><fileSet>
|
| 51 | <directory>${project.basedir}/target/versioned-runtime/shiroUser</directory>
|
| 52 | <outputDirectory>runtime/shiroUser/</outputDirectory>
|
| 53 | <includes>
|
| 54 | <include>*.json</include>
|
| 55 | </includes>
|
| 56 | </fileSet><fileSet>
|
| 57 | <directory>${project.basedir}/target/versioned-runtime/shiroUserRole</directory>
|
| 58 | <outputDirectory>runtime/shiroUserRole</outputDirectory>
|
| 59 | <includes>
|
| 60 | <include>*.json</include>
|
| 61 | </includes>
|
| 62 | </fileSet>
|
| 63 | </fileSets>
|
| 64 | </assembly>
|