blob: 2ad79a2c7589d4976a4eab8aaa1b33c352760c3c [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
<id>myassembly</id>
<formats>
<format>dir</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<fileSets>
<fileSet>
<directory>src/main/files</directory>
<outputDirectory>${fileLocation}</outputDirectory>
</fileSet>
<fileSet>
<directory>src/main/files</directory>
<outputDirectory>${pom.properties.fileLocation2}</outputDirectory>
</fileSet>
<fileSet>
<directory>src/main/files</directory>
<outputDirectory>${project.properties.fileLocation3}</outputDirectory>
</fileSet>
</fileSets>
</assembly>