Correct INFO.yaml to pass YAML Lint
[aai/gizmo.git] / src / main / assemble / ajsc_props_assembly.xml
1 <!-- 
2  Copyright (c) 2016 AT&T Intellectual Property. All rights reserved.
3 -->
4 <assembly
5         xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
6         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
7         xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd">
8         <id>${version}_properties</id>
9         <includeBaseDirectory>false</includeBaseDirectory>
10         <formats>
11                 <format>zip</format>
12         </formats>
13         <fileSets>
14                 <fileSet>
15                         <directory>${project.basedir}/target/versioned-ajsc/props</directory>
16                         <outputDirectory>${module.ajsc.namespace.name}/${module.ajsc.namespace.version}/props/</outputDirectory>
17                         <includes>
18                                 <include>*.props</include>
19                         </includes>
20
21                 </fileSet>
22
23         </fileSets>
24
25 </assembly>
26